
  :root {
    --pri-900: #003A6B; --pri-700: #1A4E8A; --pri-600: #2563A6;
    --acc-500: #FF7A00; --acc-400: #FF9C40;
    --gray-100: #F5F6F7; --gray-200: #E8EAED;
    --grad-hero: linear-gradient(135deg, #1A4E8A 0%, #003A6B 100%);
    --grad-btn:  linear-gradient(90deg,  #FF7A00 0%, #FF9C40 100%);
    --grad-btn-h:linear-gradient(90deg,  #FF9C40 0%, #FF7A00 100%);
    --grad-sec:  linear-gradient(90deg,  #1A4E8A 0%, #2563A6 100%);
    --r-lg: 24px; --r-md: 16px; --r-sm: 10px;
    --white: #fff;
  } 

  /* ════ LAYOUT ════ */
  .new-catalog-pw {
    max-width: 1440px;
    margin: 100px auto 0px;
    padding: 0 4% 80px;
  }



  .pre-product {
    height: 0px !important;
}

  /* ════ BREADCRUMBS ════ */
  .new-breadcrums {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #8a9ab0;
    letter-spacing: 0.4px;
    padding: 28px 0 16px;
  }
  .new-breadcrums a {
    color: var(--pri-600);
    text-decoration: none;
    transition: color .2s;
    position: relative;
  }
  .new-breadcrums a::after {
    content: '';
    position: absolute; left: 0; bottom: -1px;
    width: 0; height: 1px;
    background: var(--acc-500);
    transition: width .25s;
  }
  .new-breadcrums a:hover { color: var(--acc-500); }
  .new-breadcrums a:hover::after { width: 100%; }
  .new-breadcrums .sep { color: #c0cad8; }

  /* ════ H1 ════ */
  .new-catalog-pw h1 {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--pri-900);
    line-height: 1.05;
    margin: 0 0 36px;
    display: inline-block;
    position: relative;
  }
  .new-catalog-pw h1::after {
    content: '';
    display: block;
    margin-top: 10px;
    width: 64px; height: 4px;
    border-radius: 4px;
    background: var(--grad-btn);
  }

  /* ════ GRID: sidebar + cards ════ */
  .new-catalog-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: start;
  }

  /* ════ SIDEBAR ════ */
  .new-sidebar {
    position: sticky;
    top: 16px;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 28px 24px;
  }

  .new-sidebar .sb-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--pri-900);
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 4px solid var(--acc-500);
    line-height: 1.2;
  }

  /* -- range slider label -- */
  .new-sidebar .field-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--pri-700);
    margin: 18px 0 6px;
    letter-spacing: 0.3px;
  }
  .new-sidebar .field-label:first-of-type { margin-top: 0; }

  /* -- range value display -- */
  .new-sidebar .range-display {
    display: inline-block;
    width: 100%;
    padding: 9px 14px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--pri-700);
    margin-bottom: 8px;
    text-align: center;
  }

  /* -- range inputs -- */
  .new-sidebar .range-slider {
    position: relative;
    width: 100%;
    margin-bottom: 4px;
      height: 60px; 
      float: left;
  }
  .new-sidebar .range-slider input[type=range] {
    
    position: absolute;
    -webkit-appearance: none;
    pointer-events: none;
    left: 0;
    top: 30px;
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    outline: none;
    display: block;
    margin: 6px 0;
    cursor: pointer;
  }
  .new-sidebar .range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--grad-btn);
    box-shadow: 0 2px 8px rgba(255,122,0,0.45);
    cursor: pointer;
    transition: transform .2s;
  }
  .new-sidebar .range-slider input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
  }
  .new-sidebar .range-slider input[type=range]::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--acc-500);
    border: none;
    cursor: pointer;
  }

  /* -- radio sort -- */
  .new-sidebar .sort-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pri-700);
    margin: 18px 0 10px;
    letter-spacing: 0.3px;
  }
  .new-sidebar .radio-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
  }
  .new-sidebar .radio-row:hover {
    border-color: var(--acc-400);
    background: rgba(255,122,0,0.04);
  }
  .new-sidebar .radio-row input[type=radio] {
    accent-color: var(--acc-500);
    width: 16px; height: 16px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .new-sidebar .radio-row label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    line-height: 1.3;
  }

  /* -- submit button -- */
  .new-sidebar .sb-submit {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    background: var(--grad-btn);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background .3s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(255,122,0,0.35);
  }
  .new-sidebar .sb-submit:hover {
    background: var(--grad-btn-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,122,0,0.45);
  }

  /* -- CTA box -- */
  .new-sidebar .cta-box {
    margin-top: 28px;
    padding: 22px 18px;
    background: var(--grad-hero);
    border-radius: var(--r-md);
    color: var(--white);
    text-align: center;
  }
  .new-sidebar .cta-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .new-sidebar .cta-box p {
    font-size: 13px;
    opacity: .88;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .new-sidebar .cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--grad-btn);
    color: var(--white);
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    box-shadow: 0 4px 14px rgba(255,122,0,0.4);
  }
  .new-sidebar .cta-btn:hover {
    background: var(--grad-btn-h);
    transform: translateY(-2px);
  }

  /* ════ CARDS GRID ════ */
  .new-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  /* ════ CARD ════ */
  .new-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .new-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  }

  /* image area */
  .new-card-pic {
    position: relative;
    height: 210px;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    flex-shrink: 0;
  }
  .new-card-pic::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(11,31,58,0.55) 100%);
  }

  /* hits badge */
  .new-card-hits {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: var(--grad-btn);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(255,122,0,0.45);
  }

  /* card body */
  .new-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .new-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--pri-700);
    line-height: 1.25;
    margin-bottom: 14px;
  }

  /* params row */
  .new-card-params {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .new-card-param {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(26,78,138,.05);
    border: 1px solid rgba(26,78,138,.1);
    border-radius: 8px;
    padding: 7px 10px;
    flex: 1;
    min-width: 120px;
  }
  .new-card-param .p-icon {
    width: 26px; height: 26px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--grad-btn);
    color: var(--white);
    border-radius: 6px;
    font-size: 11px;
  }
  .new-card-param .p-info { display: flex; flex-direction: column; }
  .new-card-param .p-lbl { font-size: 10px; color: #888; }
  .new-card-param .p-val { font-size: 12px; font-weight: 700; color: var(--pri-700); }

  /* price */
  .new-card-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--acc-500);
    margin-bottom: 16px;
  }
  .new-card-price span {
    font-size: 13px;
    font-weight: 500;
    color: #888;
  }

  /* buttons */
  .new-card-btns {
    display: flex;
    gap: 10px;
    margin-top: auto;
  }
  .new-card-btn {
    flex: 1;
    padding: 11px;
    border-radius: var(--r-sm);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    transition: all .3s;
    border: none;
    cursor: pointer;
  }
  .new-card-btn.more {
    background: var(--grad-sec);
    color: var(--white);
  }
  .new-card-btn.more:hover {
    background: var(--grad-btn);
    transform: translateY(-2px);
  }
  .new-card-btn.order {
    background: var(--grad-btn);
    color: var(--white);
  }
  .new-card-btn.order:hover {
    background: var(--grad-btn-h);
    transform: translateY(-2px);
  }

  /* ════ ARTICLE BELOW ════ */
  .new-article-wrap {
/*     margin-top: 60px; */
  }

  /* ════ MOBILE FILTER TOGGLE ════ */
  .new-filter-toggle {
    display: none;
    width: 100%;
    padding: 13px;
    background: var(--grad-sec);
    color: var(--white);
    border: none;
    border-radius: var(--r-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
  }

  /* ════ RESPONSIVE ════ */
  @media (max-width: 1100px) {
    .new-catalog-pw {
      margin: 70px auto;
  }

    .new-catalog-inner {
      grid-template-columns: 1fr;
    }
    .new-sidebar {
      position: static;
    }
    .new-filter-toggle {
      display: block;
    }
    .new-sidebar {
      display: none;
    }
    .open .new-sidebar {
      display: block;
    }


    .new-sidebar.open {
      display: block;
    }
  }

  @media (max-width: 768px) {

    .new-catalog-inner{

      display: flex;
    flex-direction: column;
    }
    .new-cards-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .new-card-pic { height: 160px; }
    .new-card-title { font-size: 14px; }
    .new-card-price { font-size: 15px; }
    .new-card-params { display: none; }
    .new-card-btns { flex-direction: column; gap: 8px; }
  }

  @media (max-width: 480px) {
    .new-cards-grid {
      grid-template-columns: 1fr;
    }
    .new-card-pic { height: 200px; }
    .new-card-params { display: flex; }
  }

 div.range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: none;
    border-radius: 50%;
    background: var(--main-color);
  }
  
 div.range-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    position: relative;
    z-index: 10;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 14px;
    background-image: linear-gradient(to bottom, #dad8da 0, #413f41 100%);
  }

  .tabs-section{background:#fff;border-radius:var(--r-lg);box-shadow:0 3px 20px rgba(0,0,0,.08);overflow:hidden;}

  .tab-content{padding:28px 24px;}
  .tab-pane{display:none;}
  .tab-pane.active{display:block;}
  
  /* ═══════════════════════════════════════════════════
     ЗАГОЛОВКИ ВКЛАДОК
  ═══════════════════════════════════════════════════ */
  .tabs-section .tab-h{
    text-align: left;
    margin: 0;
    font-size:22px;font-weight:800;margin-bottom:4px;
    background:linear-gradient(90deg,#003A6B 0%,#1A4E8A 40%,#FF7A00 100%);
    -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
    border-bottom: none;
  }
  .tab-sub{font-size:14px;color:#777;margin-bottom:20px;}

.desc-art section{margin-bottom:24px;}
.desc-art h2{font-size:18px;text-align: left;margin: 0px; font-weight:800;color:var(--pri-700);margin-bottom:10px;padding-bottom:7px;border-bottom:2px solid var(--gray-200);}
.desc-art p{font-size:14px;line-height:1.75;color:#444;margin-bottom:9px;}
.desc-art ul,.desc-art ol{padding-left:20px;font-size:14px;line-height:1.8;color:#444;margin-bottom:9px;}
.desc-art li{margin-bottom:3px; font-size: 14px;}
.st{font-weight:700; font-size:14px; color:var(--pri-700)}
.stages{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}

/* 7-й элемент на всю ширину */
.stages .stage-i:nth-child(7){
  grid-column:1 / -1;
}
.stage-i{display:flex;align-items:center;gap:13px;background:rgba(26,78,138,.04);border:1px solid rgba(26,78,138,.1);border-radius:12px;padding:13px 16px;transition:all .25s;}
.stage-i:hover{background:rgba(26,78,138,.08);transform:translateX(4px);}
.st-num{width:38px;height:38px;border-radius:50%;background:var(--grad-btn);color:#fff;font-weight:900;font-size:16px;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 3px 10px rgba(255,122,0,.4);}
.st-txt{font-size:14px;font-weight:600;color:var(--pri-700);}
  /* Быстрые параметры */
.quick-specs{background:var(--grad-hero);border-radius:var(--r-md);padding:18px 20px;color:#fff;flex:1;}
.quick-specs h2{text-align: left;font-size:16px;font-weight:600;opacity:.7;margin: 0px 0px 12px;text-transform:uppercase;letter-spacing:.06em; color:#fff}
.spec-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}
.spec-row{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.08);border-radius:9px;padding:11px 12px;border:1px solid rgba(255,255,255,.11);}
.s-icon{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:rgba(255,122,0,.28);border-radius:7px;font-size:16px;flex-shrink:0;}
.s-div{width:1px;height:22px;background:rgba(255,255,255,.22);flex-shrink:0;}
.s-lbl{font-size:14px;opacity:.65;margin-bottom:1px;}
.s-val{font-size:17px;font-weight:700;}

.desc-art table{
margin: 30px 0px;
}

.desc-art table tr th{
  font-size:18px;
  background:var(--pri-700);
padding: 5px 0px;
}

.desc-art table tr:first-child td {
  background:none;
  color: #000;
  text-align: left;
  font-size: 14px;

}

table tr td {
  text-align: left;
  font-size: 14px;
  padding: 3px 4px;
}

.s-icon .fas{
  transform: translateX(2px);
}


@media (max-width: 720px) {

  .new-catalog-pw {
    margin: 70px auto 0px;
    padding: 0 4% 20px;
  }
  .tab-content {
    padding: 16px 12px;
}

  .quick-specs {
    padding: 13px 14px;
}


  .spec-row {
      padding: 8px 10px;
      gap: 8px;
  }

  .s-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 6px;
}

.s-div {
  height: 18px;
}

.s-lbl {
  font-size: 12px;
}

.s-val {
  font-size: 12px;
}
.st-num {
  width: 20px;
  height: 20px;
}

.st-txt {
  font-size: 12px;}
}

@media (max-width: 420px) {
  .spec-list {
  grid-template-columns: repeat(1, 1fr);}
}