.nt-catalog-v2 {
    --nt-ink: #111827;
    --nt-muted: #667085;
    --nt-soft: #f5f8fb;
    --nt-soft-2: #edf4fb;
    --nt-line: #dfe8f2;
    --nt-blue: #0b73d9;
    --nt-blue-dark: #075cb8;
    --nt-lime: #a7e034;
    --nt-green: #23a236;
    --nt-dark: #071827;
    --nt-panel: #ffffff;
    --nt-shadow: 0 16px 34px rgba(17, 24, 39, .08);
    --nt-shadow-strong: 0 22px 56px rgba(7, 24, 39, .14);
    background: var(--nt-soft);
    color: var(--nt-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    overflow: clip;
    padding-top: var(--nt-mobile-header-gap, 0px);
    text-rendering: optimizeLegibility;
}

body.novotech-site .novotech-maintenance-alert {
    display: none !important;
}

.nt-catalog-v2 *,
.nt-catalog-v2 *::before,
.nt-catalog-v2 *::after {
    box-sizing: border-box;
}

.nt-catalog-v2 a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(11, 115, 217, .14);
}

.nt-catalog-v2 button,
.nt-catalog-v2 input,
.nt-catalog-v2 textarea {
    font: inherit;
}

.nt-catalog-v2 button {
    cursor: pointer;
}

.nt-catalog-v2 img {
    display: block;
    max-width: 100%;
}

.nt-catalog-v2 .container {
    width: min(1384px, calc(100% - 48px));
    margin: 0 auto;
}

.nt-catalog-kicker {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #e8f3ff;
    color: var(--nt-blue-dark);
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nt-catalog-hero {
    position: relative;
    padding: 24px 0 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--nt-soft) 100%);
}

.nt-catalog-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 115, 217, 0), rgba(11, 115, 217, .24), rgba(167, 224, 52, .3), rgba(11, 115, 217, 0));
}

.nt-catalog-hero__grid {
    display: block;
}

.nt-catalog-hero__content {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, .7fr);
    grid-template-areas:
        "kicker search"
        "title search"
        "text actions";
    gap: 12px 28px;
    align-items: end;
}

.nt-catalog-hero .nt-catalog-kicker {
    grid-area: kicker;
}

.nt-catalog-hero h1 {
    grid-area: title;
    max-width: 720px;
    margin: 0;
    color: var(--nt-ink);
    font-size: 46px;
    line-height: .98;
    font-weight: 950;
    letter-spacing: 0;
    text-wrap: balance;
}

.nt-catalog-hero p {
    grid-area: text;
    max-width: 720px;
    margin: 0;
    color: var(--nt-muted);
    font-size: 16px;
    line-height: 1.46;
    font-weight: 650;
    text-wrap: pretty;
}

.nt-catalog-search {
    grid-area: search;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 8px;
    width: 100%;
    padding: 8px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: var(--nt-panel);
    box-shadow: var(--nt-shadow);
}

.nt-catalog-search input,
.nt-catalog-search button {
    height: 46px;
    border-radius: 7px;
    outline: none;
}

.nt-catalog-search input {
    min-width: 0;
    border: 1px solid transparent;
    padding: 0 14px;
    background: #f7fafe;
    color: var(--nt-ink);
    font-size: 15px;
    font-weight: 750;
}

.nt-catalog-search input::placeholder {
    color: #8a97aa;
}

.nt-catalog-search button {
    border: 0;
    background: var(--nt-lime);
    color: var(--nt-dark);
    font-size: 14px;
    font-weight: 950;
    transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.nt-catalog-search:focus-within {
    border-color: rgba(11, 115, 217, .32);
    box-shadow: 0 0 0 3px rgba(11, 115, 217, .12), var(--nt-shadow);
}

.nt-catalog-search button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(167, 224, 52, .26);
}

.nt-catalog-hero__actions {
    grid-area: actions;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.nt-catalog-hero__actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid var(--nt-line);
    background: var(--nt-panel);
    color: var(--nt-ink);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
    transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}

.nt-catalog-hero__actions a:first-child {
    border-color: transparent;
    background: var(--nt-blue);
    color: #fff;
}

.nt-catalog-hero__actions a:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 115, 217, .3);
    box-shadow: 0 14px 28px rgba(11, 115, 217, .14);
}

.nt-catalog-stage {
    padding: 14px 0 44px;
}

.nt-catalog-stage__head {
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 14px;
}

.nt-catalog-stage__head h2 {
    margin: 10px 0 6px;
    color: var(--nt-ink);
    font-size: 30px;
    line-height: 1.08;
    font-weight: 950;
}

.nt-catalog-stage__head p {
    max-width: 720px;
    margin: 0;
    color: var(--nt-muted);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 650;
}

.nt-catalog-stage__head > button {
    display: none;
}

.nt-catalog-cats {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 14px;
}

.nt-catalog-cats button {
    position: relative;
    min-width: 0;
    min-height: 72px;
    padding: 13px 38px 12px 14px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: var(--nt-panel);
    color: var(--nt-ink);
    text-align: left;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
    transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.nt-catalog-cats button::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nt-blue), var(--nt-lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.nt-catalog-cats button:hover,
.nt-catalog-cats button.is-active {
    transform: translateY(-2px);
    border-color: rgba(11, 115, 217, .34);
    background: #f7fbff;
    box-shadow: 0 16px 34px rgba(11, 115, 217, .1);
}

.nt-catalog-cats button.is-active::after {
    transform: scaleX(1);
}

.nt-catalog-cats b,
.nt-catalog-cats span,
.nt-catalog-cats em {
    display: block;
}

.nt-catalog-cats b {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.12;
    font-weight: 950;
}

.nt-catalog-cats span {
    margin-top: 7px;
    color: var(--nt-muted);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 750;
}

.nt-catalog-cats em {
    position: absolute;
    top: 11px;
    right: 11px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--nt-blue-dark);
    font-style: normal;
    font-size: 11px;
    font-weight: 950;
}

.nt-catalog-layout {
    position: relative;
    display: grid;
    gap: 14px;
}

.nt-catalog-filter-backdrop {
    display: none;
}

.nt-catalog-filter {
    display: grid;
    grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--nt-shadow);
    backdrop-filter: blur(14px);
}

.nt-catalog-filter__head {
    display: flex;
    align-items: center;
    min-height: 42px;
}

.nt-catalog-filter__head strong {
    color: var(--nt-ink);
    font-size: 18px;
    line-height: 1;
    font-weight: 950;
}

.nt-catalog-filter__head button {
    display: none;
}

.nt-catalog-filter__group {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nt-catalog-filter__group::-webkit-scrollbar {
    display: none;
}

.nt-catalog-filter__group > span {
    flex: 0 0 auto;
    color: var(--nt-muted);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nt-catalog-filter__group button,
.nt-catalog-filter__group label {
    min-height: 38px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    color: var(--nt-ink);
    padding: 0 13px;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    white-space: nowrap;
    transition: border-color .14s ease, background .14s ease, color .14s ease, transform .14s ease;
}

.nt-catalog-filter__group button:hover,
.nt-catalog-filter__group label:hover,
.nt-catalog-filter__group button.is-active {
    transform: translateY(-1px);
    border-color: rgba(11, 115, 217, .34);
    background: #e8f3ff;
    color: var(--nt-blue-dark);
}

.nt-catalog-filter__group input {
    width: 17px;
    height: 17px;
    accent-color: var(--nt-blue);
}

.nt-catalog-filter__note {
    min-width: 138px;
    min-height: 48px;
    display: grid;
    align-content: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--nt-dark);
    color: #fff;
}

.nt-catalog-filter__note b {
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
}

.nt-catalog-filter__note span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    line-height: 1.15;
    font-weight: 750;
}

.nt-catalog-filter > a {
    display: none;
}

.nt-catalog-toolbar {
    display: none;
}

.nt-catalog-main {
    padding-top: 0 !important;
}

.nt-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
    align-items: start;
}

.nt-catalog-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: var(--nt-panel);
    box-shadow: 0 14px 28px rgba(17, 24, 39, .06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    animation: ntCatalogCardIn .34s ease both;
}

.nt-catalog-card::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nt-blue), var(--card-accent, var(--nt-lime)));
    opacity: .7;
}

.nt-catalog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 115, 217, .34);
    box-shadow: 0 22px 44px rgba(11, 115, 217, .12);
}

.nt-catalog-card.is-hidden {
    display: none;
}

.nt-catalog-card__topline {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.nt-catalog-card__topline span,
.nt-catalog-card__topline b {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.nt-catalog-card__topline span {
    background: rgba(232, 243, 255, .92);
    color: var(--nt-blue-dark);
    box-shadow: 0 6px 16px rgba(17, 24, 39, .06);
}

.nt-catalog-card__topline b {
    background: rgba(167, 224, 52, .24);
    color: #247000;
}

.nt-catalog-card__link {
    display: grid;
    gap: 10px;
}

.nt-catalog-card__media {
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 72% 16%, rgba(167, 224, 52, .18), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f1f7fd 100%);
    overflow: hidden;
}

.nt-catalog-card__media img {
    width: 88%;
    height: 122px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform .22s ease;
}

.nt-catalog-card:hover .nt-catalog-card__media img {
    transform: scale(1.04);
}

.nt-catalog-card__body {
    display: grid;
    gap: 7px;
}

.nt-catalog-card__body strong {
    min-height: 40px;
    color: var(--nt-ink);
    font-size: 18px;
    line-height: 1.08;
    font-weight: 950;
    text-wrap: balance;
}

.nt-catalog-card__variant {
    min-height: 17px;
    color: var(--nt-blue-dark);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
}

.nt-catalog-card__desc,
.nt-catalog-card__specs {
    display: none;
}

.nt-catalog-sku {
    display: grid;
    gap: 7px;
    margin-top: 8px;
    padding: 8px;
    border: 1px solid #e3edf7;
    border-radius: 8px;
    background: #f7fbff;
}

.nt-catalog-sku__row {
    display: grid;
    gap: 6px;
}

.nt-catalog-sku__row > span {
    display: none;
}

.nt-catalog-sku__row:not(:first-child):not(.nt-catalog-sku__row--colors) {
    display: none;
}

.nt-catalog-sku__row > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nt-catalog-sku button {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #d6e4f2;
    border-radius: 8px;
    background: #fff;
    color: var(--nt-ink);
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    transition: transform .14s ease, border-color .14s ease, background .14s ease, color .14s ease, box-shadow .14s ease;
}

.nt-catalog-sku button:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 115, 217, .42);
}

.nt-catalog-sku button.is-active {
    border-color: var(--nt-blue);
    background: #e8f3ff;
    color: var(--nt-blue-dark);
    box-shadow: inset 0 0 0 1px rgba(11, 115, 217, .12);
}

.nt-catalog-sku__row--colors button {
    width: 32px;
    padding: 0;
}

.nt-catalog-sku__row--colors i {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1px solid rgba(17, 24, 39, .16);
    border-radius: 50%;
    background: var(--sku-color);
}

.nt-catalog-sku__row--colors em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    font-style: normal;
}

.nt-catalog-card__purchase {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding-top: 10px;
}

.nt-catalog-card__status {
    width: fit-content;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(35, 162, 54, .12);
    color: #19792b;
    padding: 0 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.nt-catalog-card__status.is-request {
    background: rgba(244, 185, 47, .18);
    color: #8a5d00;
}

.nt-catalog-card__price {
    min-height: 31px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.nt-catalog-card__price b {
    color: var(--nt-ink);
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
}

.nt-catalog-card__price del {
    color: #98a2b3;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.nt-catalog-card__purchase em {
    display: none;
}

.nt-catalog-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(92px, .72fr);
    gap: 8px;
    margin-top: 10px;
}

.nt-catalog-card__actions button,
.nt-catalog-card__actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.nt-catalog-card__actions button {
    border: 1px solid #d6e4f2;
    background: #fff;
    color: var(--nt-blue-dark);
}

.nt-catalog-card__actions a {
    border: 1px solid transparent;
    background: var(--nt-blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 115, 217, .16);
}

.nt-catalog-card__actions button:hover,
.nt-catalog-card__actions a:hover {
    transform: translateY(-1px);
}

.nt-catalog-empty {
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 30px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.nt-catalog-empty strong {
    font-size: 26px;
    font-weight: 950;
}

.nt-catalog-empty span {
    max-width: 460px;
    color: var(--nt-muted);
    font-size: 14px;
    line-height: 1.42;
    font-weight: 650;
}

.nt-catalog-empty button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--nt-blue);
    color: #fff;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
}

.nt-catalog-service {
    padding: 44px 0;
    background: #fff;
}

.nt-catalog-service__grid {
    display: grid;
    grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.nt-catalog-service h2,
.nt-catalog-request h2 {
    margin: 10px 0 8px;
    color: var(--nt-ink);
    font-size: 34px;
    line-height: 1.04;
    font-weight: 950;
    text-wrap: balance;
}

.nt-catalog-service p,
.nt-catalog-request p {
    max-width: 720px;
    margin: 0;
    color: var(--nt-muted);
    font-size: 15px;
    line-height: 1.46;
    font-weight: 650;
}

.nt-catalog-service ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nt-catalog-service li {
    min-height: 132px;
    padding: 14px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #f8fbff;
}

.nt-catalog-service li b {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(167, 224, 52, .22);
    color: #247000;
    font-size: 13px;
    font-weight: 950;
}

.nt-catalog-service li strong,
.nt-catalog-service li em {
    display: block;
}

.nt-catalog-service li strong {
    margin-top: 14px;
    color: var(--nt-ink);
    font-size: 16px;
    line-height: 1.1;
    font-weight: 950;
}

.nt-catalog-service li em {
    margin-top: 7px;
    color: var(--nt-muted);
    font-style: normal;
    font-size: 12px;
    line-height: 1.34;
    font-weight: 650;
}

.nt-catalog-request {
    padding: 44px 0 76px;
    background: var(--nt-soft);
}

.nt-catalog-request__box {
    display: grid;
    grid-template-columns: minmax(0, .62fr) minmax(430px, .7fr);
    gap: 24px;
    align-items: start;
    padding: 24px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 8%, rgba(167, 224, 52, .18), transparent 28%),
        linear-gradient(135deg, #071827 0%, #0e2a3f 100%);
    color: #fff;
    box-shadow: var(--nt-shadow-strong);
}

.nt-catalog-request h2 {
    color: #fff;
}

.nt-catalog-request p {
    color: rgba(255, 255, 255, .72);
}

.nt-catalog-request form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.nt-catalog-request label {
    display: grid;
    gap: 6px;
}

.nt-catalog-request label span {
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nt-catalog-request input,
.nt-catalog-request textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: #fff;
    color: var(--nt-ink);
    outline: none;
    font-size: 15px;
    font-weight: 750;
}

.nt-catalog-request input {
    height: 46px;
    padding: 0 12px;
}

.nt-catalog-request textarea {
    min-height: 88px;
    padding: 11px 12px;
    resize: vertical;
}

.nt-catalog-request input:focus-visible,
.nt-catalog-request textarea:focus-visible {
    box-shadow: 0 0 0 3px rgba(167, 224, 52, .3);
}

.nt-catalog-request__wide,
.nt-catalog-consent,
.nt-catalog-request form button,
.nt-catalog-request form [data-novotech-form-status] {
    grid-column: 1 / -1;
}

.nt-catalog-consent {
    display: flex !important;
    gap: 8px !important;
    align-items: flex-start;
}

.nt-catalog-consent input {
    width: 17px;
    height: 17px;
    accent-color: var(--nt-lime);
}

.nt-catalog-consent span {
    text-transform: none !important;
    line-height: 1.34;
}

.nt-catalog-request form button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--nt-lime);
    color: var(--nt-dark);
    font-size: 15px;
    font-weight: 950;
    transition: transform .14s ease, box-shadow .14s ease;
}

.nt-catalog-request form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(167, 224, 52, .22);
}

.nt-catalog-preview {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.nt-catalog-preview.is-open {
    display: block;
}

.nt-catalog-preview-lock,
.nt-catalog-filter-lock {
    overflow: hidden;
}

.nt-catalog-preview__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 24, 39, .58);
}

.nt-catalog-preview aside {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    width: min(410px, calc(100% - 32px));
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
    overflow: auto;
    animation: ntCatalogDrawer .22s ease both;
}

.nt-catalog-preview__close {
    align-self: flex-end;
    min-height: 36px;
    border: 1px solid var(--nt-line);
    border-radius: 8px;
    background: #fff;
    padding: 0 10px;
    color: var(--nt-ink);
    font-size: 12px;
    font-weight: 850;
}

.nt-catalog-preview img {
    height: 230px;
    object-fit: contain;
    padding: 14px;
    border-radius: 8px;
    background: #f2f7fc;
}

.nt-catalog-preview [data-preview-status] {
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(35, 162, 54, .12);
    color: #19792b;
    font-size: 11px;
    font-weight: 900;
}

.nt-catalog-preview h2 {
    margin: 0;
    color: var(--nt-ink);
    font-size: 28px;
    line-height: 1.05;
    font-weight: 950;
}

.nt-catalog-preview p {
    margin: 0;
    color: var(--nt-muted);
    font-size: 14px;
    line-height: 1.38;
    font-weight: 700;
}

.nt-catalog-preview__price {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    background: #f2f7fc;
}

.nt-catalog-preview__price b {
    color: var(--nt-ink);
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
}

.nt-catalog-preview__price del {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 750;
}

.nt-catalog-preview__price em {
    color: var(--nt-muted);
    font-style: normal;
    font-weight: 750;
}

.nt-catalog-preview__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.nt-catalog-preview__actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 900;
}

.nt-catalog-preview__actions a:first-child {
    background: var(--nt-blue);
    color: #fff;
}

.nt-catalog-preview__actions a:last-child {
    background: var(--nt-lime);
    color: var(--nt-dark);
}

.nt-catalog-mobile-bar {
    display: none;
}

.nt-catalog-v2 a:focus-visible,
.nt-catalog-v2 button:focus-visible,
.nt-catalog-v2 input:focus-visible,
.nt-catalog-v2 textarea:focus-visible {
    outline: 3px solid rgba(11, 115, 217, .28);
    outline-offset: 2px;
}

@keyframes ntCatalogCardIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ntCatalogDrawer {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1280px) {
    .nt-catalog-cats {
        display: flex;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .nt-catalog-cats::-webkit-scrollbar {
        display: none;
    }

    .nt-catalog-cats button {
        min-width: 178px;
        flex: 0 0 auto;
    }

    .nt-catalog-filter {
        grid-template-columns: 1fr;
    }

    .nt-catalog-filter__head {
        display: none;
    }

    .nt-catalog-service__grid,
    .nt-catalog-request__box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .nt-catalog-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "title"
            "text"
            "search"
            "actions";
        align-items: start;
    }

    .nt-catalog-hero__actions {
        justify-content: flex-start;
    }

    .nt-catalog-service ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .nt-catalog-v2 .container {
        width: min(100% - 22px, 560px);
    }

    .nt-catalog-hero {
        padding: 14px 0 10px;
    }

    .nt-catalog-hero h1 {
        font-size: 28px;
        line-height: 1;
    }

    .nt-catalog-hero p {
        font-size: 13px;
        line-height: 1.32;
    }

    .nt-catalog-search {
        grid-template-columns: minmax(0, 1fr) 78px;
        padding: 6px;
    }

    .nt-catalog-search input,
    .nt-catalog-search button {
        height: 38px;
    }

    .nt-catalog-search input {
        padding: 0 10px;
        font-size: 13px;
    }

    .nt-catalog-search button {
        font-size: 12px;
    }

    .nt-catalog-hero__actions {
        display: none;
    }

    .nt-catalog-stage {
        padding: 10px 0 30px;
    }

    .nt-catalog-stage__head {
        display: grid;
        grid-template-columns: 1fr auto;
        margin-bottom: 10px;
    }

    .nt-catalog-stage__head h2 {
        margin-top: 8px;
        font-size: 22px;
    }

    .nt-catalog-stage__head p {
        display: none;
    }

    .nt-catalog-stage__head > button {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 8px;
        background: var(--nt-blue);
        color: #fff;
        padding: 0 14px;
        font-size: 13px;
        font-weight: 900;
    }

    .nt-catalog-cats {
        margin-bottom: 10px;
    }

    .nt-catalog-cats button {
        min-width: 152px;
        min-height: 58px;
        padding: 11px 36px 10px 12px;
    }

    .nt-catalog-cats b {
        font-size: 14px;
    }

    .nt-catalog-cats span {
        font-size: 11px;
    }

    .nt-catalog-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: block;
        border: 0;
        background: rgba(7, 24, 39, .48);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .nt-catalog-v2.is-filter-open .nt-catalog-filter-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .nt-catalog-filter {
        position: fixed;
        z-index: 1001;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        max-height: calc(100dvh - 24px);
        display: none;
        overflow: auto;
        margin: 0;
        padding: 14px;
        border-radius: 8px 8px 0 0;
        transform: translateY(110%);
        transition: transform .22s ease;
        overscroll-behavior: contain;
    }

    .nt-catalog-filter.is-open {
        display: grid;
        transform: translateY(0);
    }

    .nt-catalog-filter__head {
        display: flex;
        justify-content: space-between;
    }

    .nt-catalog-filter__head button {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
        border: 1px solid var(--nt-line);
        border-radius: 8px;
        background: #fff;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 850;
    }

    .nt-catalog-filter__group {
        display: grid;
        overflow: visible;
    }

    .nt-catalog-filter__group > span {
        margin-bottom: 2px;
    }

    .nt-catalog-filter__group button,
    .nt-catalog-filter__group label {
        min-height: 42px;
        justify-content: flex-start;
        font-size: 14px;
    }

    .nt-catalog-filter > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--nt-blue);
        color: #fff;
        font-size: 14px;
        font-weight: 900;
    }

    .nt-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .nt-catalog-card {
        padding: 9px;
    }

    .nt-catalog-card__media {
        height: 132px;
    }

    .nt-catalog-card__media img {
        height: 112px;
    }

    .nt-catalog-card__body strong {
        min-height: 38px;
        font-size: 16px;
    }

    .nt-catalog-card__desc,
    .nt-catalog-card__specs,
    .nt-catalog-card__status,
    .nt-catalog-card__purchase em {
        display: none;
    }

    .nt-catalog-sku__row > span {
        display: none;
    }

    .nt-catalog-sku button {
        min-height: 30px;
        font-size: 11px;
        padding: 0 8px;
    }

    .nt-catalog-sku__row--colors em {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .nt-catalog-sku__row--colors button {
        width: 32px;
        padding: 0;
    }

    .nt-catalog-card__price b {
        font-size: 21px;
    }

    .nt-catalog-card__actions {
        grid-template-columns: 1fr;
    }

    .nt-catalog-card__actions button {
        display: none;
    }

    .nt-catalog-service,
    .nt-catalog-request {
        padding: 30px 0;
    }

    .nt-catalog-service h2,
    .nt-catalog-request h2 {
        font-size: 28px;
    }

    .nt-catalog-service ol,
    .nt-catalog-request form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .nt-catalog-grid {
        grid-template-columns: 1fr;
    }

    .nt-catalog-card {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 9px;
        align-items: start;
    }

    .nt-catalog-card::before {
        left: 9px;
        right: 9px;
        top: 9px;
    }

    .nt-catalog-card__topline {
        position: static;
        grid-column: 1 / -1;
        order: -2;
        margin: 4px 0 0;
    }

    .nt-catalog-card__topline b {
        display: none;
    }

    .nt-catalog-card__link {
        display: contents;
    }

    .nt-catalog-card__media {
        width: 118px;
        height: 122px;
        grid-column: 1;
        grid-row: 2 / span 3;
        margin-top: 0;
    }

    .nt-catalog-card__media img {
        height: 104px;
    }

    .nt-catalog-card__body {
        grid-column: 2;
        min-width: 0;
    }

    .nt-catalog-card__body strong {
        min-height: 0;
        font-size: 17px;
    }

    .nt-catalog-card__variant {
        font-size: 12px;
    }

    .nt-catalog-sku {
        grid-column: 1 / -1;
        margin-top: 0;
    }

    .nt-catalog-card__purchase,
    .nt-catalog-card__actions {
        grid-column: 2;
        min-width: 0;
    }

    .nt-catalog-card__price b {
        font-size: 22px;
    }

    .nt-catalog-request__box {
        padding: 16px;
    }
}

@media (max-width: 380px) {
    .nt-catalog-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .nt-catalog-card__media {
        width: 104px;
        height: 112px;
    }

    .nt-catalog-card__media img {
        height: 94px;
    }

    .nt-catalog-card__body strong {
        font-size: 16px;
    }

    .nt-catalog-card__price b {
        font-size: 20px;
    }
}

/* Catalog visual pass: page-specific storefront, still using NovoTech tokens. */
.nt-catalog-v2 {
    background: #eef4fa;
}

.nt-catalog-hero {
    isolation: isolate;
    padding: 30px 0 26px;
    background:
        radial-gradient(circle at 80% 16%, rgba(167, 224, 52, .26), transparent 28%),
        radial-gradient(circle at 56% 10%, rgba(11, 115, 217, .28), transparent 34%),
        linear-gradient(135deg, #071827 0%, #0b2a43 58%, #123b57 100%);
    color: #ffffff;
    overflow: hidden;
}

.nt-catalog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 70%);
}

.nt-catalog-hero::after {
    height: 4px;
    background: linear-gradient(90deg, var(--nt-blue), #21a8df, var(--nt-lime));
}

.nt-catalog-hero__content {
    grid-template-columns: minmax(0, .82fr) minmax(430px, .62fr);
    grid-template-areas:
        "kicker search"
        "title search"
        "text actions";
    gap: 14px 38px;
    align-items: center;
}

.nt-catalog-hero .nt-catalog-kicker {
    background: rgba(232, 243, 255, .12);
    color: #cfe7ff;
    border: 1px solid rgba(232, 243, 255, .22);
}

.nt-catalog-hero h1 {
    max-width: 680px;
    color: #ffffff;
    font-size: 54px;
    line-height: .98;
}

.nt-catalog-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.44;
}

.nt-catalog-search {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.nt-catalog-search input {
    background: #ffffff;
}

.nt-catalog-hero__actions a {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.nt-catalog-hero__actions a:first-child {
    background: var(--nt-blue);
}

.nt-catalog-hero__actions a:last-child {
    background: rgba(255, 255, 255, .16);
}

.nt-catalog-stage {
    padding: 18px 0 48px;
}

.nt-catalog-cats {
    display: flex;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.nt-catalog-cats::-webkit-scrollbar {
    display: none;
}

.nt-catalog-cats button {
    min-width: 154px;
    min-height: 48px;
    flex: 0 0 auto;
    padding: 8px 36px 8px 12px;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
}

.nt-catalog-cats b {
    font-size: 13px;
}

.nt-catalog-cats span {
    margin-top: 3px;
    font-size: 10px;
}

.nt-catalog-cats em {
    top: 8px;
    right: 8px;
    min-width: 22px;
    height: 22px;
}

.nt-catalog-layout {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.nt-catalog-filter {
    position: sticky;
    top: 214px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-color: rgba(255, 255, 255, .12);
    background:
        radial-gradient(circle at 86% 0%, rgba(167, 224, 52, .2), transparent 35%),
        linear-gradient(145deg, #071827, #0d263a);
    color: #ffffff;
    box-shadow: 0 22px 48px rgba(7, 24, 39, .18);
}

.nt-catalog-filter__head {
    min-height: 0;
}

.nt-catalog-filter__head strong {
    color: #ffffff;
    font-size: 22px;
}

.nt-catalog-filter__group {
    display: grid;
    gap: 8px;
    overflow: visible;
}

.nt-catalog-filter__group > span {
    color: rgba(255, 255, 255, .58);
}

.nt-catalog-filter__group button,
.nt-catalog-filter__group label {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font-size: 13px;
}

.nt-catalog-filter__group button:hover,
.nt-catalog-filter__group label:hover,
.nt-catalog-filter__group button.is-active {
    border-color: rgba(167, 224, 52, .42);
    background: rgba(167, 224, 52, .16);
    color: #ffffff;
}

.nt-catalog-filter__note {
    min-width: 0;
    min-height: 74px;
    padding: 12px;
    background: #ffffff;
    color: var(--nt-ink);
}

.nt-catalog-filter__note b {
    font-size: 34px;
}

.nt-catalog-filter__note span {
    color: var(--nt-muted);
    font-size: 12px;
}

.nt-catalog-filter > a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--nt-lime);
    color: var(--nt-dark);
    font-size: 14px;
    font-weight: 950;
}

.nt-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nt-catalog-card {
    overflow: hidden;
    padding: 12px;
    border-color: #dce8f4;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 16px 34px rgba(17, 24, 39, .07);
}

.nt-catalog-card::before {
    left: 12px;
    right: 12px;
    top: 12px;
    height: 3px;
}

.nt-catalog-card__topline {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    order: -1;
    margin: 6px 0 8px;
    pointer-events: auto;
}

.nt-catalog-card__topline span,
.nt-catalog-card__topline b {
    min-height: 24px;
    font-size: 10px;
}

.nt-catalog-card__media {
    height: 150px;
    margin-top: 0;
    background:
        radial-gradient(circle at 78% 16%, rgba(167, 224, 52, .22), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

.nt-catalog-card__media img {
    height: 126px;
}

.nt-catalog-card__body strong {
    min-height: 38px;
    font-size: 17px;
}

.nt-catalog-card__variant {
    font-size: 12px;
}

.nt-catalog-sku {
    margin-top: 9px;
    padding: 8px;
    background: #f2f7fc;
}

.nt-catalog-card__price b {
    font-size: 24px;
}

.nt-catalog-card__actions {
    grid-template-columns: 1fr 86px;
}

@media (max-width: 1280px) {
    .nt-catalog-layout {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .nt-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .nt-catalog-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "title"
            "text"
            "search"
            "actions";
    }

    .nt-catalog-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nt-catalog-filter {
        top: auto;
    }
}

@media (max-width: 760px) {
    .nt-catalog-hero {
        padding: 18px 0 14px;
    }

    .nt-catalog-hero h1 {
        font-size: 31px;
    }

    .nt-catalog-hero p {
        font-size: 13px;
    }

    .nt-catalog-hero .nt-catalog-kicker {
        min-height: 26px;
        font-size: 11px;
    }

    .nt-catalog-stage {
        padding-top: 12px;
    }

    .nt-catalog-cats {
        margin-bottom: 10px;
    }

    .nt-catalog-filter {
        position: fixed;
        display: none;
        gap: 12px;
        padding: 14px;
    }

    .nt-catalog-filter.is-open {
        display: grid;
    }

    .nt-catalog-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .nt-catalog-card {
        padding: 10px;
    }

    .nt-catalog-card__topline {
        margin-top: 4px;
    }

    .nt-catalog-card__media {
        height: 126px;
    }

    .nt-catalog-card__media img {
        height: 108px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nt-catalog-v2 *,
    .nt-catalog-v2 *::before,
    .nt-catalog-v2 *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
