.shopContainer-2{
  grid-template-columns: 0.2fr 1fr !important;
}
.sidenavFilters{
  position: sticky !important;
   top: 0 !important;
}
.catParent{
padding:0px;
margin:0px;
margin-bottom:20px;
  }
  .catParent li{
    list-style:none;
    font-weight:300;
   

  }
  .catParent li a{
    color:black;
  }
  .catParent li .mm{
    font-size:13px;
  }
  .catParent li a:hover{
    color:orange; 
  }
  .catParent li .mm i{
    margin-left:5px;
  }
  .catChild{
    display:block;
    max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    padding:0px;
    margin:0px;
    padding-left:10px;
  }
  .catChild.visible {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  visibility: visible;
}
  .catChild  li a{
    font-size:12px;
  }

  .price-range-container {
  position: relative;
  width: 170px;
  margin: 10px auto;
  background-color: rgb(205, 205, 205);
  height: 6px;
  border-radius: 6px;
  margin-bottom: 30px;
margin-left:0px;
}

.slider-track {
  position: absolute;
  height: 5px;
  background:black; /*#007bff;*/
  border-radius: 2px;
  top: 1px;
  left: 0;
  z-index: 1; /* Place it below the thumbs */
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  position: absolute;
  pointer-events: none; /* Let both sliders be interactive */
  z-index: 2; /* Place it above the track */
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background-color:black; /*#007bff;*/
  border-radius: 50%;
  top: -4px;
  cursor: pointer;
  pointer-events: auto; /* Allow interaction */
  position: relative;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #007bff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
  background-color: #ddd;
  height: 0px;
  border-radius: 2px;
}

input[type="range"]::-moz-range-track {
  background-color: #ddd;
  height: 4px;
  border-radius: 2px;
}

.price-display {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  font-size: 13px;
  width: 82%;
}
.filterItem{

}
.sidenavFilters h4{
font-size:16px;
text-transform:capitalize;
}
.filterItem p{
margin:0px 0px;
padding:5px 0px;

}
.filterItem p label{
font-size:14px;
}
.filterItem p input{
  width:15px;
  height:15px;
  margin-left:5px;
  border:1px solid black;
}
.ShowFilters{
  display: none;
  width: 55px;
  height: 40px;
  position: fixed;
  flex-direction: column;
  right: 10px;
  top: 130px;
  border: 1px solid grey;
  border-radius: 6px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.247);
  overflow: hidden;

}
.ShowFilters img{
    width: 100% !important;
    margin:0px !important;
    height:100% !important;
    margin-top: -2px;

}
@media screen and (max-width: 480px) {
  .showWrapper-2{
    padding-top: 10px;
  }
  .shopContainer-2{
    grid-template-columns: 1fr !important;
    gap: 0px;
  }
  .sidenavFilters{
    background-color: whitesmoke;
    position: fixed  !important;
    z-index: 20;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.123);
    top: 0px !important;
    width: 270px;
    height: 100vh;
    left: -280px;
    overflow: auto;
    padding-top: 30px;
    padding-left: 20px;
    transition: left 0.3s ease-in-out; /* Smooth transition */
  }
  .ShowFilters{
    display: block;
  }

}