  /* nozhpn- уникальные стили */
        .nozhpn-root {
            --nozhpn-red: #D71E1B;
            --nozhpn-dark-red: #d20300;
            --nozhpn-dark-gray: #1E1E1E;
            --nozhpn-medium-gray: #666;
            --nozhpn-light-gray: #f6f6f6;
            --nozhpn-white: #fff;
        }
        /* Сетка 3 колонки */
.nozhpn-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 60px;
}

/* Карточка */
.nozhpn-feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.nozhpn-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #D71E1B;
}

/* Иконка с картинкой */
.nozhpn-feature-icon {
    background: #f8f8f8;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.nozhpn-feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Контент */
.nozhpn-feature-content {
    padding: 22px 24px 28px;
}

.nozhpn-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1E1E1E;
    line-height: 1.3;
}

.nozhpn-feature-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

/* Бейджи для клапанов */
.nozhpn-valve-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.valve-badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.valve-badge.vertical {
    background: #FFE5E5;
    color: #D71E1B;
}

.valve-badge.lateral {
    background: #E5F0FF;
    color: #0056b3;
}

/* Адаптив */
@media (max-width: 992px) {
    .nozhpn-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .nozhpn-features-grid {
        grid-template-columns: 1fr;
    }
    
    .nozhpn-feature-icon img {
        width: 55px;
        height: 55px;
    }
    
    .nozhpn-feature-title {
        font-size: 18px;
    }
}
         /* Каталог - сетка 4 в строку */
        .nozhpn-catalog-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .nozhpn-catalog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        
        .nozhpn-catalog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            border-color: #D71E1B;
        }
        
        .nozhpn-catalog-img {
            background-color: #f6f6f6;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .nozhpn-catalog-img img {
            max-width: 100%;
            height: auto;
            max-height: 160px;
            object-fit: contain;
        }
        
        .nozhpn-catalog-info {
            padding: 20px;
        }
        
        .nozhpn-catalog-code {
            font-size: 14px;
            color: #D71E1B;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        
        .nozhpn-catalog-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1E1E1E;
        }
        .nozhpn-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        @keyframes nozhpn-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes nozhpn-slideInLeft {
            from { transform: translateX(-30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .nozhpn-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            color: #fff;
            padding: 40px 0;
        }
        
        .nozhpn-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 900;
            font-size: 42px;
            text-transform: uppercase;
            margin-bottom: 10px;
            animation: nozhpn-slideInLeft 0.8s ease-out;
        }
        
        .nozhpn-subtitle {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
            max-width: 900px;
            animation: nozhpn-slideInLeft 1s ease-out;
        }
        
        .nozhpn-main-layout {
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 50px;
            padding: 40px 0;
            animation: nozhpn-fadeIn 1s ease-out;
        }
        
        @media (max-width: 992px) {
            .nozhpn-main-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
			
			.nozhpn-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
			}
        }
        
        .nozhpn-vertical-photos {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .nozhpn-main-photo {
            width: 100%;
            min-height: 450px;
            background-color: #f6f6f6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .nozhpn-main-photo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .nozhpn-slider {
            position: relative;
            margin-top: 10px;
        }
        
        .nozhpn-slider .owl-carousel .owl-item {
            padding: 5px;
        }
        
        .nozhpn-slider .nozhpn-slider-item {
            height: 110px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            background-color: #f6f6f6;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .nozhpn-slider .nozhpn-slider-item.active {
            border-color: #D71E1B;
        }
        
        .nozhpn-slider .nozhpn-slider-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .nozhpn-slider .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .nozhpn-slider .owl-nav button {
            pointer-events: auto;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #fff !important;
            color: #1E1E1E !important;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 20px !important;
        }
        
        .nozhpn-slider .owl-nav button:hover {
            background-color: #D71E1B !important;
            color: #fff !important;
        }
        
        .nozhpn-specs-sidebar {
            padding: 20px 0;
        }
        
        .nozhpn-specs-title {
            font-family: 'Roboto', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #D71E1B;
            position: relative;
            padding-bottom: 10px;
        }
        
        .nozhpn-specs-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #D71E1B;
        }
        
        .nozhpn-specs-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .nozhpn-specs-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .nozhpn-spec-name {
            font-weight: 600;
            font-size: 16px;
            flex: 1;
        }
        
        .nozhpn-spec-value {
            font-weight: 700;
            color: #D71E1B;
            font-size: 18px;
            text-align: right;
            min-width: 140px;
        }
        
        .nozhpn-features-box {
            background-color: #f6f6f6;
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
            border-left: 4px solid #D71E1B;
        }
        
        .nozhpn-features-title {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .nozhpn-features-list {
            list-style: none;
        }
        
        .nozhpn-features-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }
        
        .nozhpn-features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #D71E1B;
            font-weight: bold;
        }
        
        .nozhpn-additional {
            padding: 40px 0;
            border-top: 1px solid #eee;
        }
        
        .nozhpn-section-title {
            font-family: 'Roboto', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin: 40px 0 30px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }
        
        .nozhpn-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #D71E1B;
            border-radius: 2px;
        }
        
        .nozhpn-drawings-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .nozhpn-drawing-item {
            text-align: center;
            background-color: #f6f6f6;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .nozhpn-drawing-img {
            width: 100%;
            height: auto;
            max-height: 220px;
            object-fit: contain;
            margin-bottom: 15px;
            background: white;
            padding: 10px;
            border-radius: 8px;
        }
        
        .nozhpn-drawing-caption {
            font-weight: 600;
            font-size: 14px;
            color: #1E1E1E;
        }
        
        .nozhpn-table-wrapper {
            overflow-x: auto;
            margin: 30px 0;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 14px rgba(0,0,0,0.05);
        }
        
        .nozhpn-models-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Open Sans', sans-serif;
            min-width: 500px;
        }
        
        .nozhpn-models-table th {
            background-color: #1E1E1E;
            color: white;
            padding: 14px 12px;
            font-weight: 600;
            font-size: 16px;
            text-align: center;
        }
        
        .nozhpn-models-table td {
            border: 1px solid #e0e0e0;
            padding: 12px;
            text-align: center;
            background-color: #fff;
        }
        
        .nozhpn-models-table tr:nth-child(even) td {
            background-color: #fafafa;
        }
        
        .nozhpn-materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .nozhpn-material-category {
            background-color: #f6f6f6;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .nozhpn-material-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #D71E1B;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .nozhpn-material-list {
            list-style: none;
        }
        
        .nozhpn-material-list li {
            padding: 6px 0;
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .nozhpn-material-list li::before {
            content: '•';
            color: #D71E1B;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        .nozhpn-cta {
            background: linear-gradient(135deg, #D71E1B 0%, #d20300 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
            margin: 60px 0;
            border-radius: 12px;
        }
        
        .nozhpn-cta-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .nozhpn-cta-button {
            display: inline-block;
            background-color: white;
            color: #D71E1B;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            text-decoration: none;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .nozhpn-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
        }
        
        .nozhpn-footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding: 40px 0;
            text-align: center;
        }
        
        .nozhpn-copyright {
            font-size: 14px;
        }
        
        @media (max-width: 992px) {
            .nozhpn-specs-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .nozhpn-specs-title {
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .nozhpn-title {
                font-size: 32px;
                text-align: center;
            }
            .nozhpn-subtitle {
                font-size: 16px;
                text-align: center;
            }
            .nozhpn-main-photo {
                min-height: 320px;
            }
            .nozhpn-slider .nozhpn-slider-item {
                height: 85px;
            }
            .nozhpn-specs-list li {
                flex-direction: column;
                align-items: flex-start;
            }
            .nozhpn-spec-name {
                margin-bottom: 5px;
            }
            .nozhpn-spec-value {
                text-align: left;
                min-width: auto;
            }
            .nozhpn-drawings-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .nozhpn-section-title {
                font-size: 28px;
            }
            .nozhpn-cta-title {
                font-size: 28px;
            }
            .nozhpn-cta-button {
                padding: 14px 30px;
                font-size: 16px;
            }
            .nozhpn-materials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .nozhpn-main-photo {
                min-height: 280px;
            }
            .nozhpn-slider .nozhpn-slider-item {
                height: 70px;
            }
        }