    :root {
      --black: #0a0a0a;
      --dark1: #111010;
      --dark2: #1a1616;
      --dark3: #222020;
      --dark4: #2e2a2a;
      --red: #d72323;
      --red-dk: #a41a1a;
      --teal: #04678b;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
      --muted: rgba(255, 255, 255, 0.40);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark1);
      color: var(--white);
      overflow-x: hidden;

    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── KEYFRAMES ── */
    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(215, 35, 35, .5)
      }

      50% {
        box-shadow: 0 0 0 12px rgba(215, 35, 35, 0)
      }
    }

    @keyframes cardIn {
      from {
        opacity: 0;
        transform: translateY(18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes glow {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: .8
      }
    }

    @keyframes borderPop {
      from {
        transform: scaleX(0)
      }

      to {
        transform: scaleX(1)
      }
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1400px;
      margin: auto;
      padding: 0 2rem;
    }

    /* ── BUTTONS ── */
    .btn-red {
      padding: 10px 24px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--red), var(--red-dk));
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(215, 35, 35, .32);
    }

    .btn-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
      left: -100%;
      transition: left .4s;
    }

    .btn-red:hover::after {
      left: 100%;
    }

    .btn-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(215, 35, 35, .48);
    }

    .btn-ghost {
      padding: 9px 22px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .75);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: .88rem;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, .03);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      border-color: var(--red);
      color: #fff;
      background: rgba(215, 35, 35, .1);
      transform: translateY(-2px);
    }

    .btn-outline {
      padding: 9px 22px;
      border-radius: 4px;
      border: 1.5px solid var(--red);
      color: var(--red);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: 1px;
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s ease;
    }

    .btn-outline:hover {
      background: var(--red);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         MARQUEE
      ━━━━━━━━━━━━━━━━━━━━ */
    .marquee-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 11px 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      border-bottom: 1px solid var(--red-dk);
      position: relative;
      z-index: 10;
    }

    .marquee-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .04) 60px, rgba(255, 255, 255, .04) 61px);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .m-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2.5rem;
      white-space: nowrap;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .9rem;
      letter-spacing: 3.5px;
      color: rgba(255, 255, 255, .92);
    }

    .m-sep {
      color: rgba(255, 255, 255, .35);
      font-size: .38rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         PRODUCTS WRAPPER
      ━━━━━━━━━━━━━━━━━━━━ */
    .products-wrap {
      background: var(--dark1);
    }

    .products-layout {
      display: flex;
      gap: 2rem;
      padding: 2.5rem 0;
      align-items: flex-start;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         SIDEBAR
      ━━━━━━━━━━━━━━━━━━━━ */
    .sidebar {
      width: 280px;
      flex-shrink: 0;
      position: sticky;
      top: 1.5rem;
    }

    #leftSidebar {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      padding: 1.2rem;
      position: relative;
      overflow: hidden;
    }

    /* left accent gradient bar */
    #leftSidebar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--red), var(--teal));
    }

    /* top sweep line */
    #leftSidebar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal), transparent);
    }

    .sb-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: .5rem .4rem;
      border-radius: 4px;
      transition: background .25s;
      user-select: none;
    }

    .sb-header:hover {
      background: rgba(215, 35, 35, .08);
    }

    .sb-header-left {
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    .sb-header-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .8);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .sb-header-icon {
      color: var(--red);
      font-size: .8rem;
    }

    .sb-chevron {
      color: rgba(255, 255, 255, .3);
      font-size: .68rem;
      transition: transform .3s;
    }

    .sb-chevron.open {
      transform: rotate(180deg);
    }

    .sb-divider {
      height: 1px;
      background: rgba(255, 255, 255, .06);
      margin: .75rem 0;
    }

    /* category items */
    .category-menu-item {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 4px;
      padding: .55rem .65rem;
      cursor: pointer;
      transition: all .25s ease;
      margin-bottom: .4rem;
      position: relative;
      overflow: hidden;
    }

    .category-menu-item:last-child {
      margin-bottom: 0;
    }

    /* left flash bar */
    .category-menu-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .25s;
    }

    .category-menu-item:hover::before,
    .category-menu-item.active::before {
      transform: scaleY(1);
    }

    .category-menu-item:hover {
      background: rgba(215, 35, 35, .07);
      border-color: rgba(215, 35, 35, .25);
      transform: translateX(3px);
    }

    .category-menu-item.active {
      background: rgba(215, 35, 35, .1);
      border-color: rgba(215, 35, 35, .35);
      box-shadow: 0 2px 12px rgba(215, 35, 35, .15);
    }

    .category-menu-content {
      display: flex;
      align-items: center;
      gap: .62rem;
    }

    .category-menu-icon {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(255, 255, 255, .05);
      transition: all .3s;
    }

    .category-menu-item.active .category-menu-icon {
      background: rgba(215, 35, 35, .18);
    }

    .category-menu-icon i {
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
      transition: color .3s;
    }

    .category-menu-item.active .category-menu-icon i,
    .category-menu-item:hover .category-menu-icon i {
      color: var(--red);
    }

    .category-menu-info {
      flex: 1;
      min-width: 0;
    }

    .category-menu-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: rgba(255, 255, 255, .82);
      font-size: .78rem;
      line-height: 1.3;
      margin-bottom: 1px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      letter-spacing: .3px;
    }

    .category-menu-item.active .category-menu-title {
      color: #fff;
    }

    .category-menu-count {
      color: rgba(255, 255, 255, .32);
      font-size: .65rem;
      font-family: 'Rajdhani', sans-serif;
    }

    .category-menu-item.active .category-menu-count {
      color: rgba(215, 35, 35, .7);
    }

    .cat-chev {
      color: rgba(255, 255, 255, .18);
      font-size: .65rem;
      flex-shrink: 0;
      transition: all .3s;
    }

    .category-menu-item:hover .cat-chev,
    .category-menu-item.active .cat-chev {
      color: var(--red);
      transform: translateX(2px);
    }

    .spare-part-item {
      padding: .42rem .65rem;
    }

    .spare-part-item .category-menu-icon {
      width: 26px;
      height: 26px;
    }

    .sb-stats {
      padding: .5rem 0;
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }

    .sb-stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sb-stat-lbl {
      color: rgba(255, 255, 255, .42);
      font-family: 'Rajdhani', sans-serif;
      font-size: .74rem;
      letter-spacing: .5px;
    }

    .sb-stat-val {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      color: var(--red);
      font-size: .82rem;
    }

    .sb-cta {
      margin-top: .75rem;
    }

    .sb-cta-btn {
      width: 100%;
      padding: .65rem;
      border-radius: 4px;
      background: rgba(215, 35, 35, .08);
      border: 1px solid rgba(215, 35, 35, .25);
      color: rgba(255, 255, 255, .7);
      font-family: 'Rajdhani', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      transition: all .3s;
    }

    .sb-cta-btn:hover {
      background: linear-gradient(135deg, var(--red), var(--red-dk));
      border-color: var(--red);
      color: #fff;
      box-shadow: 0 4px 14px rgba(215, 35, 35, .3);
    }

    .back-btn {
      width: 100%;
      padding: .6rem;
      border-radius: 4px;
      background: rgba(215, 35, 35, .08);
      border: 1px solid rgba(215, 35, 35, .28);
      color: var(--red);
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      transition: all .3s;
      margin-bottom: .75rem;
    }

    .back-btn:hover {
      background: rgba(215, 35, 35, .18);
    }

    #categoriesList::-webkit-scrollbar,
    #sparePartsList::-webkit-scrollbar {
      width: 3px;
    }

    #categoriesList::-webkit-scrollbar-thumb,
    #sparePartsList::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 2px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         PRODUCTS PANEL
      ━━━━━━━━━━━━━━━━━━━━ */
    .products-panel {
      flex: 1;
      min-width: 0;
    }

    .cat-header {
      margin-bottom: 1.8rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      position: relative;
    }

    /* gradient underline accent */
    .cat-header::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 130px;
      height: 1px;
      background: linear-gradient(90deg, var(--red), var(--teal), transparent);
    }

    .cat-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
    }

    #activeCategoryTitle {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.6rem);
      letter-spacing: 2px;
      color: #fff;
      line-height: 1;
      display: inline-block;
      position: relative;
      padding-left: 14px;
    }

    /* left accent bar on active title */
    #activeCategoryTitle::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--red), var(--teal));
      border-radius: 2px;
    }

    #activeCategoryDesc {
      color: rgba(255, 255, 255, .4);
      font-size: .84rem;
      margin-top: .45rem;
      font-weight: 300;
      line-height: 1.6;
      padding-left: 14px;
    }

    .cat-badge {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 12px;
      border-radius: 3px;
      background: rgba(215, 35, 35, .1);
      border: 1px solid rgba(215, 35, 35, .25);
      font-family: 'Rajdhani', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      color: rgba(215, 35, 35, .9);
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    /* ── PRODUCT GRID ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .products-grid.animate {
      animation: cardIn .4s ease both;
    }

    .product-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      overflow: hidden;
      transition: all .35s cubic-bezier(.16, 1, .3, 1);
      position: relative;
      cursor: pointer;
    }

    /* top red→teal sweep */
    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
      z-index: 2;
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    /* corner bracket bottom-right */
    .product-card::after {
      content: '';
      position: absolute;
      bottom: 8px;
      right: 8px;
      width: 14px;
      height: 14px;
      border-bottom: 2px solid rgba(215, 35, 35, .6);
      border-right: 2px solid rgba(215, 35, 35, .6);
      opacity: 0;
      transition: opacity .35s;
      z-index: 3;
      pointer-events: none;
    }

    .product-card:hover::after {
      opacity: 1;
    }

    .product-card:hover {
      border-color: rgba(215, 35, 35, .35);
      box-shadow: 0 20px 44px rgba(0, 0, 0, .5), 0 0 0 1px rgba(215, 35, 35, .06);
      transform: translateY(-6px);
      background: rgba(255, 255, 255, .055);
    }

    .product-link-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .product-image {
      position: relative;
      height: 175px;
      overflow: hidden;
      background: var(--dark3);
    }

    .product-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .product-card:hover .product-img {
      transform: scale(1.07);
    }

    .product-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .6) 100%);
    }

    .product-content {
      padding: 1rem;
    }

    .product-category {
      font-family: 'Rajdhani', sans-serif;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(215, 35, 35, .72);
      margin-bottom: .35rem;
      display: block;
    }

    .product-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.12rem;
      letter-spacing: .8px;
      color: var(--teal);
      margin-bottom: .4rem;
      line-height: 1.2;
      height: 2.5rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      transition: color .3s;
    }

    .product-card:hover .product-title {
      color: var(--teal);
    }

    .product-description {
      color: rgb(255, 255, 255);
      font-size: .78rem;
      line-height: 1.55;
      font-weight: 300;
      height: 3.5rem;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      margin-bottom: .8rem;
    }

    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: .7rem;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .product-ref {
      font-family: 'Rajdhani', sans-serif;
      font-size: .65rem;
      color: rgba(255, 255, 255, .28);
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    button.inquiry-btn {
      background: var(--red);
      color: #fff;
      border: none;
      padding: .38rem .9rem;
      border-radius: 3px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      letter-spacing: .5px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      transition: all .3s;
      font-size: .76rem;
      z-index: 5;
      position: relative;
    }

    button.inquiry-btn:hover {
      background: var(--red-dk);
      transform: scale(1.06);
      box-shadow: 0 4px 12px rgba(215, 35, 35, .4);
    }

    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      color: rgba(255, 255, 255, .22);
    }

    .empty-state i {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         CTA STRIP
      ━━━━━━━━━━━━━━━━━━━━ */
    .cta-strip {
      background: var(--dark2);
      padding: 2.8rem 0;
      border-top: 1px solid rgba(255, 255, 255, .07);
      position: relative;
      overflow: hidden;
    }

    /* background glow */
    .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(215, 35, 35, .07) 0%, transparent 65%);
    }

    /* top gradient separator */
    .cta-strip::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    .cta-strip-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .cta-strip-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      letter-spacing: 1.5px;
      color: #fff;
      margin-bottom: .4rem;
      display: inline-block;
      position: relative;
      padding-left: 14px;
    }

    .cta-strip-text h3::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--red), var(--teal));
      border-radius: 2px;
    }

    .cta-strip-text p {
      color: rgba(255, 255, 255, .42);
      font-size: .88rem;
      font-weight: 300;
      max-width: 480px;
      line-height: 1.68;
      padding-left: 14px;
    }

    .cta-strip-btns {
      display: flex;
      gap: .8rem;
      flex-shrink: 0;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         TRUST BAR
      ━━━━━━━━━━━━━━━━━━━━ */
    .trust-bar {
      background: var(--black);
      padding: 1.2rem 0;
      border-top: 1px solid rgba(255, 255, 255, .05);
      position: relative;
    }

    .trust-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: auto;
      padding: 0 2rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .5);
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .trust-item i {
      color: var(--red);
    }

    .trust-item .fas.fa-star {
      color: #f5a623;
      font-size: .65rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━
         SEARCH BAR
      ━━━━━━━━━━━━━━━━━━━━ */
    .search-strip {
      background: var(--dark2);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: .8rem 0;
    }
    .search-bar-wrap {
      position: relative;
      display: flex;
      align-items: center;
      max-width: 640px;
    }
    .search-icon {
      position: absolute;
      left: 12px;
      color: var(--red);
      font-size: .82rem;
      pointer-events: none;
      z-index: 1;
    }
    #productSearchInput {
      width: 100%;
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
      padding: .62rem 2.8rem .62rem 2.5rem;
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .3px;
      outline: none;
      transition: border-color .25s, box-shadow .25s;
    }
    #productSearchInput::placeholder {
      color: rgba(255,255,255,.25);
      font-weight: 500;
    }
    #productSearchInput:focus {
      border-color: rgba(215,35,35,.5);
      box-shadow: 0 0 0 3px rgba(215,35,35,.1);
    }
    button.search-clear {
      position: absolute;
      right: 10px;
      background: none;
      border: none;
      color: rgba(255,255,255,.35);
      cursor: pointer;
      font-size: .8rem;
      padding: 5px;
      transition: color .2s;
      line-height: 1;
      display: flex;
      align-items: center;
    }
    button.search-clear:hover { color: var(--red); }
    .search-results-info {
      margin-top: .42rem;
      font-family: 'Rajdhani', sans-serif;
      font-size: .72rem;
      color: rgba(255,255,255,.35);
      letter-spacing: .8px;
      text-transform: uppercase;
    }
    .search-results-info span { color: var(--red); font-weight: 700; }

    /* ━━━━━━━━━━━━━━━━━━━━
         RESPONSIVE
      ━━━━━━━━━━━━━━━━━━━━ */
    @media(max-width:1200px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:1024px) {
      .products-layout {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        position: static;
      }

      #categoriesList {
        max-height: 350px;
        overflow-y: auto;
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:768px) {
      .cta-strip-inner {
        flex-direction: column;
        text-align: center;
      }

      .cta-strip-text h3::before {
        display: none;
      }

      .cta-strip-text h3,
      .cta-strip-text p {
        padding-left: 0;
      }

      .cta-strip-btns {
        width: 100%;
        justify-content: center;
      }

      .trust-inner {
        gap: 1.4rem;
      }
    }

    @media(max-width:480px) {
      .products-grid {
        grid-template-columns: 1fr;
      }

      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
      }

      .wrap {
        padding: 0 1rem;
      }
    }
