/* Global utility surfaces adapted from the NetPardaz Design System. */
.np-v2-command {
  position: fixed;
  left: max(24px, env(safe-area-inset-left));
  bottom: 82px;
  z-index: 940;
  display: grid;
  justify-items: left;
  gap: 9px;
  pointer-events: none;
}
body.np-overlay-open .np-cookie-settings { opacity: 0; visibility: hidden; pointer-events: none; }
body.np-overlay-open .np-v2-mobile-tabs { opacity: 0; visibility: hidden; pointer-events: none; }
body.np-chrome-hidden:not(.np-overlay-open) .np-v2-mobile-tabs {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 22px));
}
.np-v2-compare-link { position: relative; }
.np-v2-action-count { position: absolute; top: -5px; inset-inline-end: -5px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; color: #fff; background: var(--np-primary); border: 2px solid #fff; border-radius: 999px; font: 800 9px/1 Arial, sans-serif; }
body.np-v2-skin .np-v2-command > .np-v2-command__toggle {
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff !important;
  background: linear-gradient(135deg, var(--np-primary), #008f7d) !important;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgb(0 112 99 / 26%);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
  transition: color var(--np-duration), border-color var(--np-duration), transform var(--np-duration), box-shadow var(--np-duration);
}
body.np-v2-skin .np-v2-command > .np-v2-command__toggle:hover { color: #fff !important; background: #008577 !important; border-color: rgb(255 255 255 / 38%); box-shadow: 0 16px 38px rgb(0 112 99 / 30%); transform: translateY(-2px); }
body.np-v2-skin .np-v2-command > .np-v2-command__toggle:focus-visible { outline: 3px solid rgb(0 112 99 / 18%); outline-offset: 3px; }
body.np-v2-skin .np-v2-command > .np-v2-command__toggle svg { width: 34px; min-width: 34px; height: 34px; padding: 8px; color: #d7fff6; background: rgb(255 255 255 / 12%); border: 1px solid rgb(255 255 255 / 14%); border-radius: 6px; flex: 0 0 34px; }
.np-v2-command__panel {
  width: min(340px, calc(100vw - 32px));
  padding: 12px;
  color: #eaf7f4;
  background: linear-gradient(145deg, rgb(0 112 99 / 98%), rgb(0 143 125 / 98%));
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgb(4 28 25 / 32%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom left;
  transition: opacity var(--np-duration), visibility var(--np-duration), transform var(--np-duration) var(--np-ease);
}
.np-v2-command.is-open .np-v2-command__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.np-v2-command__panel header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 8px 13px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.np-v2-command__panel header > div { display: grid; gap: 3px; }
.np-v2-command__panel header small { color: #71ad9f; font: 700 9px/1.4 ui-monospace, monospace; letter-spacing: .11em; }
.np-v2-command__panel header strong { color: #fff; font-size: 18px; }
.np-v2-command__panel header button,
.np-v2-utility-head > button,
.np-v2-consult-options header > button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
  cursor: pointer;
}
.np-v2-command__panel nav { display: grid; gap: 4px; padding-top: 8px; }
.np-v2-command__panel nav :where(a, button) {
  width: 100%;
  min-height: 58px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 10px;
  color: #eaf7f4;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: start;
  text-decoration: none;
  cursor: pointer;
}
.np-v2-command__panel nav :where(a, button):hover { background: rgb(75 191 166 / 10%); border-color: rgb(106 221 197 / 16%); }
.np-v2-command__panel nav svg { width: 20px; color: #6edfc7; }
.np-v2-command__panel nav span { display: grid; gap: 2px; }
.np-v2-command__panel nav b { color: #fff; }
.np-v2-command__panel nav small { color: #8eb4ab; font-size: 11px; }

/* The reusable button system is loaded after this utility sheet. Keep the
   command palette controls component-scoped so generic button defaults cannot
   turn the close control or search row into large white pills. */
body.np-v2-skin .np-v2-command .np-v2-command__panel [data-np-command-close] {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 6px;
  box-shadow: none;
  line-height: 1;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel [data-np-command-close]:hover {
  color: #fff;
  background: rgb(255 255 255 / 15%);
  border-color: rgb(255 255 255 / 22%);
  transform: none;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel [data-np-command-close] svg {
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 18px;
  stroke: currentColor;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel nav > :is(a, button) {
  width: 100%;
  min-height: 58px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  justify-content: initial;
  gap: 10px;
  color: #eaf7f4;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  box-shadow: none;
  font: inherit;
  font-weight: inherit;
  line-height: normal;
  text-align: start;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel nav > :is(a, button):hover {
  color: #eaf7f4;
  background: rgb(75 191 166 / 10%);
  border-color: rgb(106 221 197 / 16%);
  transform: none;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel nav > :is(a, button) svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
  justify-self: center;
  flex: 0 0 20px;
}

/* Quick access uses a single high-contrast foreground in every state. */
body.np-v2-skin .np-v2-command .np-v2-command__panel :is(
  header small,
  header strong,
  header button,
  header button svg,
  nav > a,
  nav > button,
  nav b,
  nav small,
  nav svg
) {
  color: #fff !important;
  opacity: 1 !important;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel nav > :is(a, button):is(
  :link,
  :visited,
  :hover,
  :focus,
  :focus-visible,
  :active
),
body.np-v2-skin .np-v2-command .np-v2-command__panel nav > :is(a, button):is(
  :hover,
  :focus,
  :focus-visible,
  :active
) :is(b, small, svg) {
  color: #fff !important;
}
body.np-v2-skin .np-v2-command .np-v2-command__panel svg {
  stroke: #fff !important;
}

.np-v2-utility-shell { width: min(860px, 100%); padding: 0; overflow: hidden; }
.np-v2-utility-head { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #f2fbf9; background: linear-gradient(135deg, var(--np-primary), #00907e); }
.np-v2-utility-head > div { display: grid; gap: 4px; }
.np-v2-utility-head small,
.np-v2-consult-options header small,
.np-v2-consult-aside > small { color: #75b4a5; font: 700 9px/1.4 ui-monospace, monospace; letter-spacing: .12em; }
.np-v2-utility-head h2 { margin: 0; color: #fff; font-size: clamp(22px, 3vw, 32px); }
/* Modal headings always sit on a green surface. Keep their contrast independent
   from page-level portal heading rules. */
body.np-v2-skin .np-v2-utility-head small { color: #bce8dd !important; }
body.np-v2-skin .np-v2-utility-head h2 { color: #fff !important; font-weight: 500; }
body.np-v2-skin .np-v2-utility-head > button {
  color: var(--np-primary-strong) !important;
  background: rgba(255, 255, 255, .96) !important;
  border-color: rgba(255, 255, 255, .72) !important;
  transition: color var(--np-duration), background var(--np-duration), transform var(--np-duration) var(--np-ease);
}
body.np-v2-skin .np-v2-utility-head > button svg { width: 18px !important; min-width: 18px; height: 18px !important; flex: 0 0 18px; stroke: currentColor; }
body.np-v2-skin .np-v2-utility-head > button:hover { color: #fff !important; background: var(--np-primary-strong) !important; transform: rotate(90deg); }
.np-v2-global-search { padding: clamp(20px, 4vw, 34px); display: grid; gap: 9px; }
.np-v2-global-search > label { color: var(--np-muted); font-size: 13px; font-weight: 800; }
.np-v2-global-search > div { min-height: 62px; padding: 7px 7px 7px 13px; display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 9px; background: var(--np-surface-2); border: 1px solid var(--np-line); border-radius: 8px; }
.np-v2-global-search > div:focus-within { border-color: var(--np-primary); box-shadow: 0 0 0 4px rgb(0 112 99 / 9%); }
.np-v2-global-search svg { width: 20px; color: var(--np-primary); }
.np-v2-global-search input { min-height: 46px !important; padding: 0 !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }
.np-v2-global-search button { min-height: 46px; padding: 8px 20px; color: #fff; background: var(--np-primary); border: 0; border-radius: 6px; font: inherit; font-weight: 800; cursor: pointer; }
.np-v2-search-live { min-height: 0; margin: -20px clamp(20px, 4vw, 34px) 22px; color: var(--np-muted); font-size: 12px; }
.np-v2-search-live.is-loading { min-height: 52px; padding: 16px; color: var(--np-primary); background: var(--np-primary-soft); border: 1px solid rgba(0, 112, 99, .12); border-radius: 7px; font-weight: 800; }
.np-v2-search-live__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.np-v2-search-live__list > a { min-width: 0; min-height: 76px; padding: 8px; display: grid; grid-template-columns: 58px minmax(0, 1fr) 18px; align-items: center; gap: 10px; color: var(--np-ink); background: #fff; border: 1px solid var(--np-line); border-radius: 7px; text-decoration: none; transition: border-color var(--np-duration), transform var(--np-duration), box-shadow var(--np-duration); }
.np-v2-search-live__list > a:hover { border-color: rgba(0, 112, 99, .26); box-shadow: var(--np-shadow-sm); transform: translateY(-2px); }
.np-v2-search-live__list img { width: 58px; height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.np-v2-search-live__list span { min-width: 0; display: grid; gap: 5px; }
.np-v2-search-live__list strong { overflow: hidden; color: var(--np-ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.np-v2-search-live__list small { overflow: hidden; color: var(--np-muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.np-v2-search-live__list svg { width: 17px; color: var(--np-primary); }
.np-v2-search-live__empty { margin: 0; padding: 15px; color: var(--np-muted); background: var(--np-surface-2); border: 1px dashed var(--np-line); border-radius: 7px; }
.np-v2-content-quick-search { margin: 0 clamp(20px, 4vw, 34px) 24px; padding-top: 18px; display: grid; gap: 9px; border-top: 1px solid var(--np-line); }
.np-v2-content-quick-search > label { color: var(--np-muted); font-size: 13px; font-weight: 800; }
.np-v2-content-quick-search > div { min-height: 58px; padding: 6px 7px 6px 13px; display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--np-line); border-radius: 8px; }
.np-v2-content-quick-search > div:focus-within { border-color: var(--np-primary); box-shadow: 0 0 0 4px rgb(0 112 99 / 9%); }
.np-v2-content-quick-search svg { width: 20px; color: var(--np-primary); }
.np-v2-content-quick-search input[type="search"] { min-height: 44px; padding: 0; color: var(--np-ink); background: transparent; border: 0; outline: 0; box-shadow: none; font: inherit; }
.np-v2-content-quick-search button { min-height: 44px; padding: 8px 16px; color: var(--np-primary-strong); background: var(--np-primary-soft); border: 1px solid rgb(0 112 99 / 18%); border-radius: 6px; font: inherit; font-weight: 800; cursor: pointer; }
.np-v2-search-suggestions { padding: 0 clamp(20px, 4vw, 34px) 26px; display: grid; gap: 10px; }
.np-v2-search-suggestions > span { color: var(--np-muted); font-size: 12px; font-weight: 800; }
.np-v2-search-suggestions > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.np-v2-search-suggestions a { min-width: 0; padding: 9px; display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 10px; color: var(--np-ink); background: #fff; border: 1px solid var(--np-line); border-radius: 6px; text-decoration: none; }
.np-v2-search-suggestions a:hover { border-color: rgb(0 112 99 / 32%); background: var(--np-primary-soft); }
.np-v2-search-suggestions img { width: 58px; height: 48px; object-fit: contain; mix-blend-mode: multiply; }
.np-v2-search-suggestions a span { min-width: 0; display: grid; gap: 3px; }
.np-v2-search-suggestions b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.np-v2-search-suggestions small { color: var(--np-primary); font: 700 10px/1.4 ui-monospace, monospace; }
.np-v2-utility-shell > footer { padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--np-muted); background: var(--np-surface-2); border-top: 1px solid var(--np-line); font-size: 12px; }
.np-v2-utility-shell > footer a { color: var(--np-primary); font-weight: 800; text-decoration: none; }

.np-v2-account-shell { width: min(760px, 100%); padding: 0; overflow: hidden; }
.np-v2-account-body { display: grid; grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr); }
.np-v2-account-benefits { padding: clamp(24px, 4vw, 38px); color: #eaf7f4; background: linear-gradient(145deg, var(--np-primary), #00907e); }
.np-v2-account-benefits > svg { width: 42px; height: 42px; color: #77e8d0; }
.np-v2-account-benefits h3 { margin: 22px 0 13px; color: #fff; font-size: clamp(22px, 3vw, 30px); line-height: 1.5; }
.np-v2-account-benefits ul { margin: 0; padding: 0 18px 0 0; color: #bdd6d1; line-height: 2; }
body.np-v2-skin .np-v2-account-benefits h3 { color: #fff !important; }
body.np-v2-skin .np-v2-account-benefits :is(ul, li) { color: #d7ece7 !important; }
.np-v2-account-form { padding: clamp(24px, 4vw, 38px); display: grid; grid-template-columns: 1fr; gap: 8px; align-content: center; }
.np-v2-account-form label { color: var(--np-ink); font-size: 13px; font-weight: 800; }
.np-v2-account-form input:not([type="hidden"]) { width: 100%; min-height: 48px; margin-bottom: 6px; padding: 10px 13px; color: var(--np-ink); background: #fff; border: 1px solid var(--np-line); border-radius: 6px; outline: 0; font: inherit; }
.np-v2-account-form input:focus { border-color: var(--np-primary); box-shadow: 0 0 0 4px rgb(0 112 99 / 9%); }
.np-v2-account-form input[aria-invalid="true"] { border-color: #b42318; box-shadow: 0 0 0 4px rgb(180 35 24 / 9%); }
.np-v2-account-error { margin: 0 0 3px; padding: 9px 11px; color: #8c1d18; background: #fff3f1; border: 1px solid rgb(180 35 24 / 18%); border-radius: 6px; font-size: 12px; line-height: 1.7; }
.np-v2-account-error[hidden] { display: none; }
.np-v2-account-form button[type="submit"] { min-height: 48px; margin-top: 5px; color: #fff; background: var(--np-primary); border: 0; border-radius: 6px; font: inherit; font-weight: 900; cursor: pointer; }
.np-v2-account-sms { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; color: var(--np-primary); border: 1px solid var(--np-line); border-radius: 6px; font-weight: 800; text-decoration: none; }
.np-v2-account-sms svg { width: 18px; height: 18px; }
.np-v2-account-shell > footer { padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--np-muted); background: var(--np-surface-2); border-top: 1px solid var(--np-line); font-size: 12px; }
.np-v2-account-shell > footer a { color: var(--np-primary); font-weight: 900; text-decoration: none; }

.np-v2-mobile-tabs { display: none; }

.np-v2-consult-shell { width: min(900px, 100%); display: grid; grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr); overflow: hidden; }
.np-v2-consult-aside { position: relative; min-height: 430px; padding: clamp(26px, 5vw, 48px); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(145deg, var(--np-primary), #00907e); }
.np-v2-consult-aside::before { content: ""; position: absolute; top: -90px; left: -70px; width: 270px; aspect-ratio: 1; border: 1px solid rgb(101 227 198 / 15%); border-radius: 50%; box-shadow: 0 0 0 42px rgb(101 227 198 / 4%), 0 0 0 84px rgb(101 227 198 / 2%); }
.np-v2-consult-aside > * { position: relative; }
.np-v2-consult-aside h2 { margin: 16px 0 12px; color: #fff; font-size: clamp(28px, 4vw, 42px); line-height: 1.35; }
.np-v2-consult-aside p { margin: 0; color: #b9d1cc; line-height: 1.9; }
.np-v2-consult-options { padding: clamp(22px, 4vw, 38px); }
.np-v2-consult-options header { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.np-v2-consult-options header h2 { margin: 6px 0 0; font-size: clamp(22px, 3vw, 31px); }
.np-v2-consult-options header > button { color: var(--np-ink); background: var(--np-surface-2); border-color: var(--np-line); }
.np-v2-consult-options nav { display: grid; gap: 9px; }
.np-v2-consult-options nav a { min-height: 78px; padding: 13px; display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 12px; color: var(--np-ink); border: 1px solid var(--np-line); border-radius: 8px; text-decoration: none; }
.np-v2-consult-options nav a:hover { color: var(--np-primary-strong); background: var(--np-primary-soft); border-color: rgb(0 112 99 / 28%); }
.np-v2-consult-options nav svg { width: 21px; color: var(--np-primary); }
.np-v2-consult-options nav span { display: grid; gap: 3px; }
.np-v2-consult-options nav small { color: var(--np-muted); font-size: 11px; }
.np-v2-consult-options nav em { color: var(--np-primary); font-style: normal; }

.npv2-compare { background: var(--npv2-white); }
.npv2-compare .npv2-section-head p { max-width: 680px; margin: 8px 0 0; color: var(--npv2-muted); font-size: 14px; }
.npv2-compare-table { overflow-x: auto; border: 1px solid var(--npv2-line); border-radius: 11px; background: #fff; box-shadow: var(--npv2-shadow); }
.npv2-compare-table table { width: 100%; min-width: 780px; border-collapse: collapse; }
.npv2-compare-table :where(th, td) { padding: 15px 17px; border-bottom: 1px solid #e7efed; text-align: start; vertical-align: middle; }
.npv2-compare-table th { color: var(--npv2-muted); background: #f7faf9; font-size: 12px; }
.npv2-compare-table tbody tr:last-child td { border-bottom: 0; }
.npv2-compare-table tbody tr:hover { background: #fbfdfc; }
.npv2-compare-product { min-width: 250px; display: grid; grid-template-columns: 58px minmax(0, 1fr); align-items: center; gap: 10px; color: var(--npv2-ink); text-decoration: none; }
.npv2-compare-product img { width: 58px; height: 48px; object-fit: contain; mix-blend-mode: multiply; }
.npv2-compare-product strong { font-size: 13px; line-height: 1.55; }
.npv2-compare-part { font: 800 12px/1.4 ui-monospace, monospace; color: var(--npv2-green); }
.npv2-button-small { min-height: 38px; padding: 7px 14px; font-size: 12px; }
.npv2-text-link[type="button"] { padding: 0; color: var(--npv2-green); background: transparent; border: 0; font: inherit; font-weight: 800; cursor: pointer; }

.np-v2-compare-modal {
  padding: clamp(14px, 2vw, 30px);
  background:
    radial-gradient(circle at 18% 0, rgb(53 183 156 / 30%), transparent 38%),
    linear-gradient(145deg, #004e46, #007c6e 58%, #006358);
}
.np-v2-compare-shell {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #f3f8f7;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: clamp(11px, 2vw, 16px);
  box-shadow: 0 34px 100px rgb(0 35 31 / 38%), 0 0 0 1px rgb(255 255 255 / 9%);
}
.np-v2-compare-head { position: relative; z-index: 3; padding: clamp(18px, 2.5vw, 30px) clamp(22px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #fff; background: linear-gradient(135deg, #006b5f, #009681); box-shadow: 0 10px 36px rgb(0 73 64 / 18%); }
.np-v2-compare-head > div { display: grid; gap: 4px; }
.np-v2-compare-head small { color: #7fc8b7; font: 700 9px/1.4 ui-monospace, monospace; letter-spacing: .12em; }
.np-v2-compare-head h2 { margin: 0; color: #fff; font-size: clamp(22px, 3vw, 32px); }
.np-v2-compare-head button { width: 48px; min-width: 48px; height: 48px; min-height: 48px; display: grid; place-items: center; padding: 0; color: #fff; background: rgb(255 255 255 / 10%); border: 1px solid rgb(255 255 255 / 24%); border-radius: 7px; cursor: pointer; }
body.np-v2-skin .np-v2-compare-head :is(small, h2, button, button svg) {
  color: #fff !important;
  opacity: 1 !important;
}
body.np-v2-skin .np-v2-compare-head button svg { stroke: #fff !important; }
body.np-v2-skin .np-v2-compare-head button:is(:hover, :focus, :focus-visible, :active) {
  color: #fff !important;
}
.np-v2-compare-live { min-height: 0; padding: clamp(14px, 2.5vw, 34px) clamp(14px, 4vw, 64px); overflow: auto; background: #f3f8f7; overscroll-behavior: contain; }
.np-v2-compare-empty { min-height: 220px; display: grid; place-items: center; align-content: center; gap: 8px; color: var(--np-muted); text-align: center; }
.np-v2-compare-empty > :first-child { width: 34px; height: 34px; color: var(--np-primary); }
.np-v2-compare-empty strong { color: var(--np-ink); font-size: 19px; }
.np-v2-compare-loading { min-height: 60vh; display: grid; place-items: center; color: var(--np-primary); font-size: 14px; font-weight: 700; text-align: center; }
.np-v2-compare-matrix { width: 100%; overflow: auto; background: #fff; border: 1px solid var(--np-line); border-radius: 11px; box-shadow: 0 24px 70px rgb(5 62 56 / 10%); }
.np-v2-compare-matrix table { width: 100%; min-width: 880px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.np-v2-compare-matrix :is(th, td) { min-width: 230px; padding: 16px 18px; color: var(--np-ink); border-inline-start: 1px solid var(--np-line); border-bottom: 1px solid var(--np-line); font-size: 13px; line-height: 1.8; text-align: center; vertical-align: middle; }
.np-v2-compare-matrix :is(th, td):first-child { width: 180px; min-width: 180px; border-inline-start: 0; }
.np-v2-compare-matrix thead th { position: sticky; z-index: 2; top: 0; padding-block: 18px; background: #fff; vertical-align: middle; }
.np-v2-compare-matrix thead th:first-child { z-index: 4; right: 0; color: var(--np-primary); background: #edf8f5; font-size: 12px; }
.np-v2-compare-matrix tbody th { position: sticky; z-index: 1; right: 0; color: var(--np-primary-strong); background: #f7fbfa; font-size: 12px; font-weight: 800; }
.np-v2-compare-matrix tbody tr:nth-child(even) td { background: #fbfdfc; }
.np-v2-compare-matrix tbody tr:last-child :is(th,td) { border-bottom: 0; }
.np-v2-compare-matrix td.is-missing { color: #8c9895; background: #fafafa; }
.np-v2-compare-product-head { min-width: 0; display: grid; justify-items: center; gap: 8px; text-align: center; }
body.np-v2-skin .np-v2-compare-product-head img { width: 100%; height: clamp(120px, 17vh, 180px); object-fit: contain; mix-blend-mode: multiply; }
.np-v2-compare-product-head strong { min-height: 48px; color: var(--np-ink); font-size: 15px; line-height: 1.6; }
.np-v2-compare-product-head small { direction: ltr; color: var(--np-primary); font: 800 11px/1.5 ui-monospace, monospace; text-align: center; }
.np-v2-compare-product-head>div { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; }
.np-v2-compare-product-head :is(a,button) { min-height: 38px; padding: 8px 11px; display: inline-flex; align-items: center; justify-content: center; color: var(--np-primary); background: #fff; border: 1px solid rgba(0,112,99,.22); border-radius: 6px; font: inherit; font-size: 10px; font-weight: 800; text-decoration: none; cursor: pointer; }
.np-v2-compare-product-head a:first-child { color: #fff; background: var(--np-primary); border-color: var(--np-primary); }
.np-v2-compare-shell > footer { position: relative; z-index: 3; padding: 15px clamp(22px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border-top: 1px solid var(--np-line); box-shadow: 0 -8px 30px rgb(5 62 56 / 7%); }
.np-v2-compare-shell > footer :where(a, button) { min-height: 44px; padding: 10px 14px; color: var(--np-primary); background: transparent; border: 0; font: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
.np-v2-compare-dock { position: fixed; left: max(24px, env(safe-area-inset-left)); bottom: 18px; z-index: 939; transform: none; }
.np-v2-compare-dock[hidden] { display: none; }
body.np-v2-skin .np-v2-compare-dock button { width: 52px; min-width: 52px; height: 52px; min-height: 52px; padding: 0; display: grid; place-items: center; color: #fff !important; background: var(--np-primary) !important; border: 1px solid rgb(255 255 255 / 22%); border-radius: 8px; box-shadow: 0 12px 34px rgb(0 112 99 / 24%); font: inherit; cursor: pointer; transition: color var(--np-duration), background var(--np-duration), border-color var(--np-duration), transform var(--np-duration), box-shadow var(--np-duration); }
body.np-v2-skin .np-v2-compare-dock button:hover { color: #fff !important; background: #008577 !important; border-color: rgb(255 255 255 / 38%); box-shadow: 0 16px 38px rgb(0 112 99 / 30%); transform: translateY(-2px); }
body.np-v2-skin .np-v2-compare-dock button:focus-visible { outline: 3px solid rgb(0 112 99 / 18%); outline-offset: 3px; }
.np-v2-compare-dock svg { width: 23px; height: 23px; color: #c9fff3; }

body.np-v2-skin .np-cookie-settings {
  right: max(24px, env(safe-area-inset-right)) !important;
  left: auto !important;
  bottom: 18px !important;
  z-index: 938;
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff !important;
  background: linear-gradient(145deg, var(--np-primary), #009480) !important;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgb(0 112 99 / 28%);
  transition: color var(--np-duration), background var(--np-duration), border-color var(--np-duration), transform var(--np-duration), box-shadow var(--np-duration);
}
body.np-v2-skin .np-cookie-settings:hover { color: #fff !important; background: #008577 !important; border-color: rgb(255 255 255 / 38%); box-shadow: 0 16px 38px rgb(0 112 99 / 30%); transform: translateY(-2px); }
body.np-v2-skin .np-cookie-settings:focus-visible { outline: 3px solid rgb(0 112 99 / 18%); outline-offset: 3px; }
body.np-v2-skin .np-cookie-settings svg { width: 23px; height: 23px; color: #fff; stroke-width: 2.2; }

/* Persistent actions stay anchored to the viewport edges on desktop. */

@media (max-width: 1024px) {
  .np-v2-command { display: none; }
  .np-v2-consult-shell { grid-template-columns: 1fr; }
  .np-v2-consult-aside { min-height: 230px; }
  .np-cookie-settings { display: none !important; }
  .np-v2-compare-dock { left: max(12px, env(safe-area-inset-left)); bottom: calc(84px + env(safe-area-inset-bottom)); }
  body.np-v2-skin { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  body.np-v2-skin:has(.np-v2-compare-dock:not([hidden])) { padding-bottom: calc(142px + env(safe-area-inset-bottom)); }
  .np-v2-mobile-tabs {
    position: fixed;
    z-index: 950;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 62px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    border: 1px solid var(--np-line);
    border-radius: 9px;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 18px 48px rgb(4 28 25 / 18%);
    backdrop-filter: blur(18px);
    transition: opacity .3s var(--np-ease), visibility .3s, transform .3s var(--np-ease);
    will-change: transform, opacity;
  }
  .np-v2-mobile-tabs :where(a, button) {
    min-width: 0;
    min-height: 50px;
    padding: 5px 3px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: var(--np-muted);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
  }
  body.np-v2-skin .np-v2-mobile-tabs > :where(a, button) {
    min-height: 50px !important;
    padding: 5px 3px !important;
    display: grid !important;
    place-items: center !important;
    align-content: center !important;
    gap: 3px !important;
    color: var(--np-muted) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    transition: color var(--np-duration), background var(--np-duration);
  }
  body.np-v2-skin .np-v2-mobile-tabs > :where(a, button).is-active { color: var(--np-primary-strong) !important; background: var(--np-primary-soft) !important; }
  .np-v2-mobile-tabs :where(a, button):focus-visible { outline: 2px solid rgb(0 112 99 / 28%); outline-offset: -2px; }
  .np-v2-mobile-tabs svg { width: 18px !important; height: 18px !important; stroke-width: 1.8; }
  .np-v2-mobile-tabs span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (max-width: 640px) {
  .np-v2-search-live__list { grid-template-columns: 1fr; }
  .np-v2-search-live { margin-top: -14px; }
}

@media (max-width: 420px) {
  .np-v2-mobile-tabs { right: 8px; left: 8px; gap: 2px; padding: 5px; }
  .np-v2-mobile-tabs :where(a, button) { padding-inline: 1px; font-size: 9px !important; }
}

@media (max-width: 640px) {
  .np-v2-utility-modal,
  .np-v2-consult-modal { padding: 8px; align-items: end; }
  .np-v2-utility-shell,
  .np-v2-consult-shell { max-height: 92dvh; border-radius: 10px 10px 6px 6px; }
  .np-v2-search-suggestions > div { grid-template-columns: 1fr; }
  .np-v2-global-search > div { grid-template-columns: 22px minmax(0, 1fr); }
  .np-v2-global-search button { grid-column: 1 / -1; }
  .np-v2-content-quick-search > div { grid-template-columns: 22px minmax(0, 1fr); }
  .np-v2-content-quick-search button { grid-column: 1 / -1; }
  .np-v2-utility-shell > footer { align-items: start; flex-direction: column; }
  .np-v2-account-body { grid-template-columns: 1fr; }
  .np-v2-account-benefits { display: none; }
  .np-v2-account-shell > footer { align-items: start; flex-direction: column; }
  .np-v2-consult-aside { display: none; }
  .np-v2-consult-options { padding: 22px 16px; }
  .np-v2-compare-modal { padding: 6px; }
  .np-v2-compare-shell { border-radius: 9px; }
  .np-v2-compare-head { padding: 16px 14px; }
  .np-v2-compare-head h2 { font-size: 21px; }
  .np-v2-compare-head small { font-size: 8px; }
  .np-v2-compare-live { padding: 10px; }
  .np-v2-compare-matrix { border-radius: 8px; }
  .np-v2-compare-matrix table { min-width: 760px; }
  .np-v2-compare-matrix :is(th, td) { min-width: 210px; padding: 13px; font-size: 12px; }
  .np-v2-compare-matrix :is(th, td):first-child { width: 130px; min-width: 130px; }
  body.np-v2-skin .np-v2-compare-product-head img { height: 110px; }
  .np-v2-compare-shell > footer { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .np-v2-command__panel { transition: none; }
}
