
  :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;
    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-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; }
  }
