.vs-product-wrappers {
    display: flex; /* Use flexbox for layout */
    flex-direction: row; /* Align elements in a row */
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 50px;
    padding: 0; /* Remove default padding */
/*    background-color: rgb(249, 249, 249);  Change background color on hover 
*/    }
/* Styles for product not found container */
.product-boxd {
    display: flex;
    height: 100%;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    transition: 0.3s ease-in-out;
    margin-left: 20%;
}
@media (max-width: 768px) {
    .mobile-intro {
        display: block;
        background-image: url(../../assets/img/britishaudio.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-sizing: border-box;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -60px !important;
        padding-top: 20px;
        margin-bottom: 30px !important;
    }
}
@media (max-width: 767px) {
  .about-us-introduction__title {
    font-size: 2.5rem;
    padding: 0.3rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid rgb(223, 223, 223);
    display: inline-block; /* So the line only spans the text width */
  }
}

/* Hover effect for better visual feedback */
/*.product-boxd:hover {
    background-color: #f1f1f1;
    transform: scale(1.02);
}
*/
/* Styles for product image */
.product-imager {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 50%;
        margin-top: -90px;
}

/*.product-imagedd {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s ease-in-out;
}*/

/* Image hover effect */
.product-imagedd:hover {
    opacity: 1;
}

/* Optional padding and spacing */
.product-boxd img {
    margin: 60px;
    margin-left: 160px;
        margin-bottom: -70px !important;
}

.spaces {
    width: 100%; /* Ensure it uses full width */
}

.container-fluid {
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
}
  
.rows {
    display: flex; /* Enable flexbox for row layout */
}

.sidebar-area {
    flex: 0 0 300px; /* Fixed width for sidebar */
    max-width: 300px; /* Maximum width for the sidebar */
    padding: 20px; /* Add padding inside the sidebar */
/*    height: 100vh;  Full viewport height 
*/    overflow-y: auto; /* Scrollable if content overflows */
    margin-left: -20px; /* No margin */
    margin-top: -35px;
}
.collection-heros__text-wrappers {
    margin-right: 100px; /* Adjust the value as needed */
}


.subcatgory-heading {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

/*.widget {
    margin-bottom: 20px;  Space between widgets 
}
*/
.form-select {
    padding-right: 30px; /* Ensure there's enough space for the symbol */
    position: relative;
    width: 100%; /* Ensures the select element takes full width available */
}
#mobileNextBtn, #mobilePrevBtn {
    background-color: rgb(255, 83, 0);
    color: white;
}

.mobile-pagination a {
    color: black;
    margin-right: 5px;
    cursor: pointer;
    padding: 1px 5px;
    text-decoration: none;
    transition: background-color .3s;
}

.mobile-pagination a.active {
    background-color: rgb(0, 0, 0);
    color: white;
}
.dropdown-symbol {
    font-size: 18px; /* Adjust size as needed */
    color: #333;     /* Adjust color as needed */
    position: absolute;
    top: 72%; /* Vertically center the symbol */
    right: 10px; /* Adjust as needed */
    transform: translateY(-50%); /* Center the symbol vertically */
    pointer-events: none; /* Ensures the dropdown symbol does not interfere with the select dropdown */
}


.widget_title2 {
    font-size: 18px; /* Font size for widget titles */
   font-weight: 700;
   margin-top: 15px;
}

.widget_titles{
	position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
    line-height: 1em;
    padding: 0 0 21px 0;
    margin: -0.2em 0 30px 0;
    border-bottom: 1px solid var(--border-color);
}
.orderby, .form-control, .ftr_price, .form-select {
    width: 100%; /* Full width for form controls */
    padding: 10px; /* Padding inside input elements */
}

.price-amount {
    margin-top: 10px; /* Space above the price range */
}

#sortingSelect, #brandsSelect {
    width: 100%; /* Full width for dropdowns */
}

#slider-range {
    margin-top: 15px; /* Space above the slider */
    margin-left: 10px;
}

/* Right Content Area */
.col-xl-10.col-lg-12.mx-auto {
    flex: 1; /* Flex-grow to fill remaining space */
    padding: 20px; /* Padding for right content */
    margin: 0; /* No margin */
}
.searchster-categories-grid {
    display: flex;
/*    align-items: flex-start;
*/    width: 100%;
}

.main-category-image {
/*    flex: 1;
*//*    padding-right: 20px;
*/}

.main-category-image__img {
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}


.other-subcategory-item:hover {
    background-color: #f0f0f0;
}

.searchster-categories-grid__item__name {
    font-weight: bold;
    display: inline-block;
    color: #333;
}
.searchster-categories-grid__item img.main-levels {
    height: 150px;
    margin-bottom: 10px;
}

.cart-btn{
    background: #000;
    color: #fff;
    padding: 15px 20px;
    min-height: 54px;
    border: 3px solid #000;
    border-radius: 5px;
}
/* Container for product boxes */
.product-box {
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    height: 100%;
    grid-template-columns: repeat(3, 1fr); /* Three equal-width columns */
}
.product-box:hover {
    border-color: #aaa; /* Change border color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
    background-color: rgb(255, 255, 255); /* Change background color on hover */
}

.delivery-info {
        display: flex;
        align-items: center;
        font-size: 14px; /* Adjust the font size as needed */
        margin-bottom: 10px;
    }
    
    .delivery-info .az_El {
        width: 25px; /* Adjust the icon size as needed */
        height: 25px; /* Adjust the icon size as needed */
        margin-right: 5px; /* Space between icon and text */
        color: black;
    }

    .delivery-info p {
        margin: 0;
        color: #b30000;
        font-size: 15px;
        margin-left: 7px;
        margin-top: 2px;
    }
/* Fixed height for product image container */
.product-image {
    height: 350px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure images fit within the container */
.product-image img {
    max-height: 300px;
    max-width: 250px;
    object-fit: cover; /* This will ensure the image covers the container while maintaining its aspect ratio */
}

/* Responsive styles for mobile screens */
@media (max-width: 600px) {
    .product-image {
        height: 250px; /* Adjust height for smaller screens */
    }
/*.rowss{
	margin-left: -20px;
	margin-right: -20px;
}*/

    .product-image img {
        max-height: 100%; /* Adjust max height for smaller screens */
        max-width: 50%; /* Allow image to take the full width */
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .product-image {
        height: 300px; /* Slightly adjust height for medium screens */
    }

    
}

/* Responsive styles for mobile screens */
@media (max-width: 900px) {
    .product-box {
        grid-template-columns: repeat(2, 1fr); /* Two columns on medium screens */
    }
}

@media (max-width: 600px) {
    .product-box {
        grid-template-columns: 1fr; /* One column on small screens */
    }
}
/* Product information styling */
.product-info {
    padding: 16px;
    flex-grow: 1;
}
.product-name {
    font-size: 18px; /* Adjust the font size as needed */
    margin: 0 0 8px; /* Margin below the product name */
    display: -webkit-box; /* Enables the flexbox-based truncation */
    -webkit-line-clamp: 2; /* Limits to two lines */
    -webkit-box-orient: vertical; /* Sets the box to be oriented vertically */
    overflow: hidden; /* Hides the overflowed text */
    text-overflow: ellipsis; /* Adds ellipsis (...) at the end if the text is too long */
    word-break: break-word; /* Break long words if necessary */
    position: relative; /* Relative positioning for tooltip */
}
/* Responsive styles for smaller mobile screens */
@media (max-width: 600px) {
    .product-name {
        font-size: 16px; /* Reduce font size for small screens */
        -webkit-line-clamp: 3; /* Show only one line of text on smaller screens */
    }
}

/* Responsive styles for smaller mobile screens */
@media (max-width: 600px) {
    .cart-btn {
        padding: 10px 15px; /* Reduce padding for small screens */
        font-size: 14px; /* Reduce font size for small screens */
        min-height: 40px; /* Adjust minimum height for small screens */
        border: 2px solid #000; /* Slightly reduce the border width */
    }
}

/* Responsive styles for medium screens */
@media (max-width: 900px) {
    .cart-btn {
        padding: 12px 18px; /* Adjust padding for medium screens */
        font-size: 15px; /* Slightly reduce font size */
        min-height: 45px; /* Adjust minimum height */
    }
}
/* Responsive styles for medium screens */
@media (max-width: 900px) {
    .product-name {
        font-size: 16px; /* Slightly reduce font size for medium screens */
    }
}
.product-name:hover {
    white-space: normal;
    overflow: visible;
    -webkit-line-clamp: unset;
    background: #fff;
    z-index: 10;
    position: absolute;
    padding: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;          /* Auto width based on content */
    max-width: 90vw;             /* Prevent overflow on small screens */
    color: #FF5722;
    word-break: break-word;
    box-sizing: border-box;
}
@media (max-width: 767px) {
  .product-name:hover {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
  }
}
.price-item--regulars{
	font-size: 16px;
	font-weight: bold;
		color: rgb(0, 0, 0);

}
.price-item--mrp-price {
   
    position: relative; /* Ensure the pseudo-element is positioned correctly */

    	font-size: 16px;
	font-weight: 500;
color: black;
}
.price-item--mrp-price::before {
    content: '';
    position: absolute;
  right: 0;
    width: 110%;
    border-top: 1px solid rgb(0, 0, 0); /* Thickness and color of the line */
    top: 50%; /* Position the lines centered to overlap the text */
    transform: translateY(-80%); /* Adjust alignment */
}


.price-item--sale{
	color: rgb(255, 0, 0);
		font-size: 22px;
		font-weight: bold;

}
.product-mrp, .product-price {
    margin: 4px 0;
}


/*.about-us-introduction {
    
    margin-bottom: 0px !important;
    
}*/
.intro-section{
	    margin-bottom: 28px !important;

}
.product-count{
	display: none;
}
.search-by-car{
	margin-top: -40px;
}
.search-vehicle-form__controls {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    width: 104%;
    box-sizing: border-box;
    margin: 0 auto;
    justify-content: center;  /* Always center items */
    margin-bottom: 10px;
}

.search-vehicle-form__controls__item select {
    width: 250px;
    padding: 10px;
    font-size: 15px;
    background-color: white;
    color: black;
    border: 1px solid black;
/*    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
*/}
.form-control:disabled, .form-control[readonly] {
    background-color: white;
    color: #b3b3b3;
    opacity: 1;
    border-color: #ced4da;
    cursor: not-allowed;
}
.search-vehicle-form__controls__item {
    margin-right: 10px;
}

.h2-section__name {
    position: relative;
    display: inline-block;
/*    padding-bottom: 5px;
*/}
.h2-section__name {
    color: rgb(255, 255, 255);
    text-shadow: 2px 0 rgb(255, 0, 0), -2px 0 rgb(255, 0, 0), 0 3px rgb(255, 0, 0), 0 -2px rgb(255, 0, 0), 2px 2px rgb(255, 0, 0), -2px -2px rgb(255, 0, 0), 2px -2px rgb(255, 0, 0), -2px 2px rgb(255, 0, 0);
}

.h2-section {
    display: block;
    margin: 0 auto;
/*    margin-right: 1000px;  
  margin-bottom: 20px;/* 
      text-align: center; /* Center content horizontally */

    font-size: 40px; /* Adjusted font size for mobile */
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 1.4;
    margin-left: 50px;
}
#productList {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    margin-top: 50px;
    margin-right: -15px;
    

}
select {


  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 14px !important;

  padding: 8px 30px 8px 12px !important; /* top/bottom + left padding + space for arrow */

  box-sizing: border-box !important;
}


.search-vehicle-form__controls__item select {
  width: 160px; /* Set a fixed width */
  padding: 10px; /* Add padding for better appearance */
  font-size: 15px; /* Adjust font size as needed */
  background-color: white; /* Set background color for select boxes */
  color: rgb(0, 0, 0); /* Set text color */
}
.search-vehicle-form__controls__items select {
/*  width: 300px;  Set a fixed width 
*/  padding: 10px; /* Add padding for better appearance */
  font-size: 16px; /* Adjust font size as needed */
  background-color: white; /* Set background color for select boxes */
  color: rgb(0, 0, 0); /* Set text color */
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid;
}
.search-vehicle-form__controls__items {
  margin-right: 10px; /* Adjust spacing between select boxes */
}

.h2-section__name {
    position: relative;
    display: inline-block;
/*    padding-bottom: 5px;
*/}
.h2-section__name {
    color: rgb(255, 255, 255);
    text-shadow: 2px 0 rgb(255, 0, 0), -2px 0 rgb(255, 0, 0), 0 3px rgb(255, 0, 0), 0 -2px rgb(255, 0, 0), 2px 2px rgb(255, 0, 0), -2px -2px rgb(255, 0, 0), 2px -2px rgb(255, 0, 0), -2px 2px rgb(255, 0, 0);
}

.h2-section {
    display: block;
    margin: 0 auto;
/*    margin-right: 1000px;  
  margin-bottom: 20px;/* 
      text-align: center; /* Center content horizontally */

    font-size: 40px; /* Adjusted font size for mobile */
    color: rgb(0, 0, 0);
    font-weight: 600;
    line-height: 1.4;
    margin-left: 20px;
}
select.form-control optgroup {
    font-size: 12px;
    color: #12477a
}
select.form-control option {
    color: #717171;
    font-size: 14px
}
/* Media query for smaller screens like mobile devices */
@media screen and (max-width: 600px) {
    .h2-section {
        margin-right: 0; /* Reset right margin for mobile */
        margin-left: 20px; /* Adjusted left-side margin for mobile */
        font-size: 24px; /* Further adjusted font size for smaller screens */
    }
}





.btn.btn-block.text-uppercase {
 background-color: rgb(0, 0, 0); /* Dark blue button */
    color: #FFFFFF; /* White text */  
  padding: 13px; /* Add padding for better appearance */
  font-size: 15px; /* Adjust font size as needed */
 
  border-radius: 5px; /* Adjust the value as needed */
    cursor: pointer; /* Add pointer cursor */
/*font-weight: bold;
*/width: 159px;

}


.btns.disabled, .btns:disabled, fieldset:disabled .btns {
    pointer-events: none;
    opacity: .65;
}
.text-uppercases {
    text-transform: uppercase !important;
}
.btns {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btns.btn-blocks.text-uppercases {
    margin-top: 10px;
    background-color: rgb(0, 0, 0); /* Dark blue button */
    color: #FFFFFF; /* White text */
    padding: 12px; /* Add padding for better appearance */
    font-size: 16px; /* Adjust font size as needed */
    width: 95%; /* Full width with a little padding */
    margin-right: auto; /* Automatically adjust right margin */
   
    padding-left: 30px;
    border-radius: 5px; /* Adjust the value as needed */
    cursor: pointer; /* Add pointer cursor */
}
.search-vehicle-form__controlss {
    width: 100%; /* Full width by default */
    max-width: 1200px; /* Constrain to a maximum width */
    margin: 0 auto; /* Center it horizontally */
    padding: 15px; /* Padding for content inside */
      margin-bottom: 20px;
}

/* Large mobile screens (between 576px and 768px) */
@media (max-width: 768px) and (min-width: 576px) {
    .btns.btn-blocks.text-uppercases {
        font-size: 14px; /* Slightly smaller text for larger mobile screens */
        width: 90%; /* Narrow width for better fit */
        padding: 10px; /* Adjust padding */
    }
}

/* Small mobile screens (less than 576px) */
@media (max-width: 575px) {
    .btns.btn-blocks.text-uppercases {
        font-size: 16px;
        width: 96%; /* Full width */
        padding: 12px 10px; /* Equal padding on left and right */
        margin-right: 0;
        margin-left: 10px;
        text-align: center; /* Center text */
    }
}
/* This will disable body scroll when the modal is active */
body.modal-active {
    overflow: hidden;
}



  .modals {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal__fade {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal__body {
position: relative;
    margin: 2% auto; /* 5% from the top and centered for desktop */
    padding: 40px; /* Original padding for desktop */
    width: 90%; /* Original width for desktop */
    max-width: 970px; /* Original max-width for desktop */
/*    height: 80%;  Original height for desktop 
*/    max-height: 550px; /* Original max-height for desktop */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s;
    overflow: hidden; /* Disable scrolling for the modal body */
    margin-top: 123px;
}

/* Media query for smaller screens like mobile devices */
@media screen and (max-width: 600px) {
    .modal__body {
        margin: 10% auto; /* Adjusted margin for mobile */
        padding: 10px; /* Adjusted padding for mobile */
        width: 95%; /* Adjusted width for mobile */
        max-width: none; /* Removed max-width for mobile */
        height: auto; /* Auto height for mobile */
        max-height: none; /* Removed max-height for mobile */
    }
}

.brand-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {

  .dropdown-wrapper {
      display: none; /* Hide by default */
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ccc;
      padding: 10px;
      background-color: #fff;
  }

  .toggle-icon {
      transition: transform 0.3s ease;
  }

  .rotate {
      transform: rotate(180deg);
  }
.rotate-up {
  transform: rotate(180deg); /* Arrow up */
  transition: transform 0.3s;
}

.rotate-down {
  transform: rotate(0deg); /* Arrow down */
  transition: transform 0.3s;
}

  .Mobile-heading-filter-option {
      display: inline-block;
      width: 50%; /* Two items per row on mobile */
      font-size: 14px;
      margin: 0;
      padding: 0;
      white-space: nowrap;
      box-sizing: border-box;
      vertical-align: top;
      margin-top: -20px;
  }

}

.checkboxes-containersss {
    max-height: 200px;         /* 👈 Limit height */
    overflow-y: auto; 
    box-sizing: border-box;
    font-size: 0;         /* Remove inline-block spacing */
    padding: 0;
    margin: 0;
}


.heading-filter-option {
    display: inline-block;
    width: 50%;           /* Exactly 2 in a row */
    font-size: 14px;      /* Reset text size */
    margin: 0;
    padding: 0;
    white-space: nowrap;
    box-sizing: border-box;
    vertical-align: top;
    margin-top: -30px;
}


.modal__close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal__close:hover,
.modal__close:focus {
    color: #f00;
    text-decoration: none;
    cursor: pointer;
}


.modal__heading {
    margin-bottom: 10px;
    font-size: 30px;
    color: #12477a;
    font-weight: 600;
    line-height: 1.2;
}

.searchster {
    margin-top: 20px;
    overflow-y: auto; /* Enable scrolling */
/*    max-height: calc(100% - 200px);  Adjust as needed 
*/}

/* Adjust the searchster-categories-grid class to enable scrolling */
.searchster-categories-grid {
    overflow-y: auto; /* Enable scrolling */
    max-height: calc(100% - 200px); /* Adjust as needed */
}

.searchster-filters__content {
    margin-bottom: 10px;
    font-size: 16px;
}

.searchster-filters__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-top: -20px;
}

.searchster-filters__list__item {
    background-color: #edfafe;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px;
    color: black;
}
.searchster-filters {
      margin: 20px;
    }
    .searchster-filters__list__item {
      display: flex;
      align-items: center;
      margin-bottom: 5px;
    }
    .searchster-filters__list__item__name1 {
      margin-right: 10px;
    }
    .searchster-filters__list__item__close {
      cursor: pointer;
      color: red;
      display: none;
    }
.searchster-categories-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.searchster-categories-grid {
    display: flex;
    flex-wrap: wrap;
/*    justify-content: space-between;
*/}

.searchster-categories-grid__item {
    width: calc(25% - 14px);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    margin: 0 7px 14px;
    box-shadow: 0 3px 10px #ebebeb;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}
.searchster-categories-grid__itemst {
    width: calc(25% - 14px);
    font-size: 16px;
    display: flex;
    flex-direction: column;
    margin: 0 7px 14px;
    box-shadow: 0 3px 10px #ebebeb;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
        height: 150px; /* Set a fixed height for the card */

}

.searchster-categories-grid__item__namess {
    font-weight: bold;
    display: inline-block;
    color: #333;
    margin-top: 50px;
}
.searchster-categories-grid__itemst:hover {
    border: 5px solid red; /* Thicker red border */
    background-color: rgb(250, 250, 250);
    border-image: linear-gradient(45deg, red, blue, black) 1; /* Multi-color gradient border */
}
.searchster-categories-grid__item:hover {
	    background-color: rgb(239, 239, 239);

	}
@media only screen and (max-width: 768px) {
    .searchster-categories-grid__item {
        width: calc(50% - 14px); /* Two items per row on smaller screens */
    }
}


/* Animation for the modal */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
} 

.search-form__filed__control {
    height: 44px;
    border-radius: 4px 0 0 4px;
    border-width: 1px 0 1px 1px;
    -webkit-appearance: none;
}
    
 
.form-controlrs {
    display: flex;
    width: 90%;
    padding: .375rem .75rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
* {
  box-sizing: border-box;
}


 .searchster-categories-breadcrumbs {
            list-style: none;
            padding: 0;
        }
        .searchster-categories-breadcrumbs__item {
            display: inline;
            margin-right: 5px;
        }
        .searchster-categories-breadcrumbs__item__link {
            cursor: pointer;
            text-decoration: underline;
        }
 /* Grid container */
.searchster-question__option {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjusted width */
    gap: 14px;
}

/* Grid items */
.searchster-question__option__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 5px;
    border: 2px solid #c0cce6;
    border-radius: 5px;
    transition: all .3s;
    text-align: center;
    cursor: pointer;
}

/* Hover effect */
.searchster-question__option__item:hover {
    background-color: #e0e6f8; /* Change to your desired hover background color */
}

/* Media query for smaller screens like mobile devices */
@media screen and (max-width: 600px) {
    .searchster-question__option {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjusted width for smaller screens */
        gap: 10px; /* Adjusted gap */
    }
}
/* For wider screens, change item width and padding */
@media (min-width: 760px) {
    .searchster-question__option__item {
        padding: 25px 5px;
        border: 2px solid #edfafe;
        font-size: 16px;
    }
}

	 ngx-searchster-nav,
      ngx-searchster-question {
       display: none;
        }
     .breadcrumb-links {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    color: #6e6e6e !important;
    position: relative;
    transition: color 0.3s ease; /* Smooth transition effect */
}
@media (max-width: 767px) {
  .vs-product-wrappers {
    margin-top: -50px;
  }
}

.breadcrumb-links:hover {
    color: #000000 !important; /* Dark black color on hover */
}
    .breadcrumb-container{
		margin-left: 20px;
		margin-top: 20px;
		margin-bottom: 10px;
	    margin-right: 20px;

	}
.dropdown-wrappers {
margin-bottom: -30px;    padding: 0; /* Remove padding around the dropdown wrapper */
}

.checkboxes-container {
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}

.checkbox-container {
    margin-bottom: -30px; /* Apply negative margin to reduce space between checkboxes */
    padding: 0; /* Remove padding */
    display: block; /* Ensure the checkbox container is a block element */
    margin-top: -25px;
}


.checkbox-container label {
    display: inline; /* Ensure the label displays inline with the checkbox */
}


.fitment-button-container {
    min-height: 40px;
    margin-bottom: 10px;
}

.fitment-button {
    display: flex;
    align-items: center;
    background-color: rgb(247, 247, 247);
    border:  2px solid #ffc600;;
    cursor: pointer;
    font-size: 13.5px;
    padding: 8px 12px;
    min-height: 40px;
    text-align: left;
    width: 100%;
}
  

.underline-text {
    text-decoration: underline;
    cursor: pointer; /* Optional: Change cursor to pointer */
    color: black;
}
.underline-text:hover {
    text-decoration: underline;
}
html {
    scroll-behavior: smooth;
}
.icon-container {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.button-text {
    font-family: Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
    font-size: 14px;
    color: #484848;
}

.highlight-text {
    font-weight: 700; /* Optional: Makes the text bold */
}
.az_DOb {
    height: 10px;
    width: 10px;
    position: relative;
    display: flex;
    right: 7px;
    top: 7px;
}
.sticky-header.scroll-up {
								    top: 40px; /* Adjust this to match the height of your search container */
								}	
/*#vhicle-car.active {
    background-color: #717171;  Change background to orange 
}	*/	
#vhicle-car.highlight,#mobileVehicleCar.highlight {
		    border: 2px solid #ffcc00; /* Yellow border highlight */
		    background-color: #FF5722;; /* Red background color when highlighted */
		    animation: none; /* Remove CSS animation for manual control */
		}	
#nextBtn:hover, #prevBtn:hover {
background-color: rgb(128, 128, 128);}
#nextBtn,#prevBtn{
	background-color: #FF5722;
	color: white;
}
 .mb-01{
	margin-bottom: 30px;
 }
 .fa-trash-alt:before {
    content: "\f2ed";
}

/* Hide desktop version by default on mobile */
.desktop-version {
    display: block; /* Show desktop by default */
    
}

.mobile-version {
    display: none; /* Hide mobile by default */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-version {
        display: none; /* Hide desktop on screens less than 992px */
        
    }
    .mobile-version {
        display: block; /* Show mobile on screens less than 992px */
    }
}

/*.mobile-version {
    background-color: #e0e0e0;  Slightly darker gray for mobile 
    padding: 20px;  Padding for mobile 
    border: 1px solid #bbb;  Border for mobile 
}
*/

/* Hide the sidebar by default */
.sidemenu-wrappers {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

/* Show the sidebar when it is active */
.sidemenu-wrappers.show {
    display: block;
    transform: translateX(0);
}
.filter-icon {
    width: 20px; /* Set the desired width */
    height: 20px; /* Set the desired height */
    margin-left: -10px; /* Space between the text and the icon */
        margin-top: -2px;
}
.filter-text {
    margin-right: 20px; /* Space between the text and the icon */
}
/* Filter button for mobile */
.filter-btn {
    display: none;
    position: absolute;
    
    right: 30px;
    background-color: white;
    color: black;
   
    font-size: 16px;
    
    border: 1px solid black;
    border-radius: 3px;
    padding: 2px;
   
    margin-top: 4px;
    flex-shrink: 0;
    height: 40px;
    width: 115px;
    margin-right: 10px;
    font-weight: bold;
}
.filter-btn:hover {
    background-color: orangered; /* Darker shade on hover */
    color: white;
}

.filter-btn i {
    margin-right: 5px;
}
@media screen and (max-width: 768px) {
    .filter-btn {
      
        font-size: 14px; /* Adjust font size for smaller screens */
        right: 15px; /* Adjust position */
    
    }
}
/* Only show the filter button and sidebar for mobile screens */
@media (max-width: 768px) {
    .filter-btn {
        display: block;
    }
    .st-breadcrumbs{
		margin-top: -5px;
	}
}
/* Close Button Style */
/* Style for Filter & Sort Title */
.filter-widget_title.mb-2 {
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    padding: 30px 10px;     /* Padding around the title */
    text-align: center;     /* Center the title text */
    text-transform: uppercase; /* Transform text to uppercase */
    font-size: 22px; /* Font size override */
    font-weight: bold;      /* Make the title bold */
}

/* Close Button Styling */
.sidemenu-wrappers .closeButtons {
    position: absolute;
    top: 20px;
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    border: none;           /* Remove border */
    width: 50px;
    height: 50px;
    border-radius: 50%;     /* Make the button circular */
    line-height: 50px;      /* Vertically center the icon */
    text-align: center;     /* Center the icon horizontally */
    font-size: 24px;        /* Icon size */
    transition: all 0.4s ease; /* Smooth transition for effects */
    z-index: 2;             /* Ensure it's on top */
}

/* Rotate the close icon (Optional) */
.sidemenu-wrappers .closeButtons i {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

/* Optional effect on hover (rotate icon) */
.sidemenu-wrappers .closeButtons:hover i {
    transform: rotate(180deg);
}

/* Styling for Apply Filter Button */


/* Icon inside the close button */
.closeButton i {
    font-size: 16px;           /* Font size of the icon */
}
/* General list styles */
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-item, .price-item {
    padding: 10px 0;
}

/* Header for brand and price sections */
.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
}
.dropdown-symbols {
    font-size: 18px;
    color: #333;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}
.sidebar-areas {
    flex: 0 0 300px;
    max-width: 150px;
    padding: 20px;
    overflow-y: auto;
    margin-left: -10px;
    margin-top: -35px;
}
/* Dropdown styles (initially hidden) */
.dropdown-wrapper {
    padding-left: 10px;
    margin-top: 10px;
}
.gtbs {
    background: orangered;
    color: #fff !important;
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 25px;
    border-radius: 3px;
    width: 100%;
    font-size: 16px;
}
.menu-catgory {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    color: white;
}

/* Icons */
.icons {
    width: 24px; /* Adjust size as necessary */
    height: 24px; /* Adjust size as necessary */
    transition: opacity 0.3s ease;
}

/* Hide close icon initially */
.icon-close {
    display: none;
}

/* Drawer Styles */
.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px; /* Width of the drawer */
    height: 100%; /* Full height */
    background: white; /* Background color */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5); /* Shadow effect */
    transform: translateX(-100%); /* Initially hidden */
    transition: transform 0.3s ease; /* Smooth transition */
    z-index: 999; /* Ensure it's above other content */
}

/* Show the drawer */
menu-drawer[open] .menu-drawer {
    transform: translateX(0); /* Slide in */
}

/* Inner Container Styles */
.menu-drawer__inner-container {
    padding: 20px; /* Inner padding */
}

/* Navigation Container Styles */
.menu-drawer__navigation-container {
    overflow-y: auto; /* Allow scrolling if content is too tall */
    height: calc(100% - 40px); /* Adjust based on other elements */
}

/* Navigation Styles */
.menu-drawer__navigation {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

/* Menu List Styles */
.menu-drawer__menu {
    padding: 0; /* Remove default padding */
}

.menu-drawer__menu li {
    padding: 10px 0; /* Spacing between items */
    font-size: 16px; /* Font size for items */
    border-bottom: 1px solid #eaeaea; /* Divider */
}

.menu-drawer__menu li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-drawer {
        width: 100%; /* Full width on smaller screens */
    }
}
.checkboxes-container {
    margin-top: 10px;
}

.checkbox-container {
    margin-bottom: 5px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
}
/* General Styles for Sidebar */
.sidemenu-wrapperss {
    position: fixed; /* Fixes the sidebar to the left side of the viewport */
    top: 0; /* Align to the top of the viewport */
    left: 0; /* Align to the left of the viewport */
    width: 300px; /* Set a fixed width for the sidebar */
    height: 100%; /* Full height */
    background-color: #ffffff; /* Background color for the sidebar */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease; /* Smooth transition for opening and closing */
    transform: translateX(-100%); /* Initially hidden off-screen */
    z-index: 1000; /* Ensure it's on top of other elements */
}

/* Show the sidebar when active */
.sidemenu-wrapperss.active {
    transform: translateX(0); /* Slide in */
}

/* Sidebar content styles */
.sidemenu-contents {
    padding: 20px; /* Padding inside the sidebar */
    overflow-y: auto; /* Scroll if content overflows */
    height: 100%; /* Full height */
}

/* Close button styles */
.closeButtonss {
    background: none; /* No background */
    border: none; /* Remove border */
    cursor: pointer; /* Pointer cursor on hover */
    margin-bottom: 20px; /* Space below the button */
    font-size: 24px; /* Font size for the icon */
}

/* Filter widget title styles */
.filter-widget_titles {
    font-size: 1.5rem; /* Title font size */
    font-weight: bold; /* Bold font */
    color: #333; /* Text color */
    margin-bottom: 15px; /* Space below the title */
}



.show {
            display: block; /* or however you want to show it */
        }
        .slider-filter-bar {
            display: none; /* initially hide the sidebar */
        }
         .slider-filter-bar {
         
    display: none;
    position: fixed;
    top: 50px;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
        }
        .slider-filter-bar.show {
          
    display: block;
    transform: translateX(0);
}
      .filter-widget_titles.mb-2 {
    background-color: #000; /* Black background */
    color: #fff;            /* White text color */
    padding: 30px 10px;     /* Padding around the title */
    text-align: center;     /* Center the title text */
    text-transform: uppercase; /* Transform text to uppercase */
    font-size: 22px; /* Font size override */
    font-weight: bold;      /* Make the title bold */
}


/* Rotate the close icon (Optional) */
.slider-filter-bar .closeButtons i {
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}


  .close-button.rotate {
            transform: rotate(180deg); /* Rotate the button when the class is added */
        }
         
        .close-buttons {
            color: white;
            border: none;
            cursor: pointer;
             position: absolute;
    top: 20px;
    background-color: #000;
  
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    transition: all 0.4s ease;
    z-index: 2;
        }
        .button {
            padding: 10px 15px;
            background-color: #4CAF50; /* Button color */
            color: white;
            border: none;
            cursor: pointer;
        }

.sidemenu-wrappers.open {
    transform: translateX(0); /* Slide in when open */
}


/* Scrollable container for brands or price items */
.checkboxes-containers {
    max-height: 150px; /* Set a max height */
   margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 10px;
        overflow-x: auto; /* Allow horizontal scrolling if content overflows */
        white-space: nowrap; /* Prevent text wrapping */
        text-overflow: unset; /* Remove ellipsis if scrolling is enabled */
        box-sizing: border-box; /* Ensure padding is included in width */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .usericon img {
           margin-top: 10px;
    width: 50px;
    margin-left: 40px;
    }

    .usericon  span{
        font-size: 12px; /* Adjust text size for mobile */
    }
}

/* Media query for mobile screens */
@media (max-width: 768px) {
    .cart-icons {
margin-top: 20px;   
margin-left: 30px;
 }

    .user-text {
        font-size: 18px; /* Adjust text size for mobile */
            white-space: nowrap; /* Prevent line breaks */

    }
}

@media (max-width: 480px) {
    .user-icons {
       margin-top: 10px; 
    }

    .user-text {
               font-size: 16px;
        white-space: nowrap;
        color: white;
        font-weight: bold;
        margin-top: 1px;
        margin-right: -60px;

    }
}

/* Mobile responsive */
@media (max-width: 575px) {
    .sidemenu-wrappers {
        width: 100%;
    }
}
.category-list{
	            margin-top: 20px;

}
.subcategory-list::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

.subcategory-list::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 10px; /* Rounded corners */
}

.subcategory-list::-webkit-scrollbar-thumb {
    background: #888; /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
}

.subcategory-list::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
}
.close-buttons:hover i {
    transform: rotate(190deg); /* Rotate when hovered */
}
.subcategory-list {
    list-style-type: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    .subcatgory-heading {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: -20px;
        overflow-x: auto; /* Allow horizontal scrolling if content overflows */
/*        white-space: nowrap;  Prevent text wrapping 
*/        text-overflow: unset; /* Remove ellipsis if scrolling is enabled */
        box-sizing: border-box; /* Ensure padding is included in width */
    }

  
   
}
/* Mobile styles */
@media only screen and (max-width: 768px) {
    .breadcrumb-container {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px;
        margin-bottom: 5px;
        height: 40px; /* Adjust this value based on your design */
        overflow-x: auto; /* Enable horizontal scrolling */
        white-space: nowrap; /* Prevent wrapping */
        box-sizing: border-box; /* Ensure padding is included in width */
    }

   
}
/* Styling for subcategory items */
.subcategory-list li {
    padding: 10px; /* Padding for each subcategory */
    cursor: pointer; /* Pointer cursor on hover */
}

.subcategory-list li:hover {
    background-color: #f0f0f0; /* Highlight on hover */
}
  .subcategory-item {
            margin-bottom: 10px;
        }
        .subcategory-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px;
            background-color: #f8f8f8;
            border-radius: 5px;
                margin-right: 15px;
                margin-top: 15px;
        }
        .subcategory-link {
    color: black; /* Text color */
    text-decoration: none; /* Remove underline */
}
input[type=checkboxs]:checked~label:before, input[type=radio]~label::before {
    content: "";
}
.subcategory-link:hover {
    color: white; /* Change color on hover (for example, blue) */
    cursor: pointer; /* Change cursor to pointer */
    background-color: orangered;
}
.applychanges {
    background: orangered;
    color: #fff !important;
    border: 1px solid rgb(0, 0, 0);
    padding: 10px 25px;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
}
.checkboxes-container {
    max-height: 300px; /* Adjusted height to 300 pixels */
    overflow-y: auto;  /* Enable vertical scrolling */

 
}

/* Styling for Webkit browsers (Chrome, Safari) */
.checkboxes-container::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.checkboxes-container::-webkit-scrollbar-track {
    background: rgb(255, 255, 255); /* Color of the scrollbar track */
    border-radius: 10px; /* Rounded corners for the track */
}

.checkboxes-container::-webkit-scrollbar-thumb {
    background: rgb(126, 126, 126); /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
}

.checkboxes-container::-webkit-scrollbar-thumb:hover {
    background: rgb(126, 126, 126); /* Color of the scrollbar thumb */
}

.checkbox-item {
    margin-bottom: 5px; /* Spacing between checkboxes */
}


        .dropdown-wrapper {
            /* display: none; /* Hide dropdown by default */
            padding-left: 10px; /* Indent subcategory items */
        }
        ul {
    list-style-type: none;
}
       .dropdown-wrapper ul {
        list-style-type: none; /* Remove bullet points */
        padding: 0; /* Remove padding */
        margin: 0; /* Remove margin */
    }
        .dropdown-wrapper li {
            padding: 5px 0;
            cursor: pointer;
        }
        .toggle-icon {
            transition: transform 0.3s; /* Smooth rotation */
        }
        .rotate {
            transform: rotate(90deg); /* Rotate icon when active */
        }
 .btn23.btn-block23.text-uppercase23 {
/*    margin-top: 5px;
*/    background-color: #FF5722;
    color: #FFFFFF;
    padding: 13px;
    font-size: 15px;
    width: 100%;
    margin-right: auto;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;         /* Centers the text horizontally */
    white-space: normal;        /* Allow text to wrap to the next line */
    overflow-wrap: break-word;  /* Ensures long words break into the next line if needed */
    word-break: break-word;     /* Breaks long words to fit within the button width */
    display: block;    
/*    font-weight: bold;          Makes button take full available space 
*/}

.searchster-categories-grid {
    display: flex;
/*    align-items: flex-start;
*/    width: 100%;
}


    .type_description {
    position: relative;
    left: 280px;
    top: -290px;
    width: 140px;
    z-index: 400;
    color: white;
}
.type_description p {
    font-size: 12px;
}
.h-9 {
    height: 2.25rem;
}
.w-12 {
    width: 4rem;
}	
.text-xs {
    font-size: 1.2rem !important;
    line-height: 1.8rem !important;
    color: white;
    font-weight: bold;
}
.main-category-image__img {
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/*.other-subcategories {
    display: flex;
    flex-direction: column;
    flex: 1;
    display: flex;
    border-radius: 8px;

    margin-left: -100px;
    border: 1px solid;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
        border: 1px solid rgb(224, 224, 224) !important;
}*/
/*.other-subcategory-item {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
        border: 1px solid rgb(224, 224, 224) !important;
}
*/
.other-subcategory-item {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
        border: 1px solid rgb(224, 224, 224) !important;
}
.searchster-categories-grid__item123{
	   margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
        border: 1px solid rgb(224, 224, 224) !important;
        
        
}
.searchster-categories-grid__item img{
	height: -webkit-fill-available;
}
.other-subcategories {
    display: flex;
    flex-direction: column;
    flex: 1;
    display: flex;
    border-radius: 8px;

    border: 1px solid;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
        border: 1px solid rgb(224, 224, 224) !important;
        margin-left: 60px;
        max-width: 350px;
        height: 360px;
}
.other-subcategory-item:hover {
    background-color: #f0f0f0;
}

.searchster-categories-grid__item__name {
    font-weight: bold;
    display: inline-block;
    color: #333;
}
#filter-count{
	display: none;
}
.btn23 {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.text-uppercase23 {
    text-transform: uppercase !important;
}
    .mobilebtn23.mobilebtn-block23.mobiletext-uppercase23 {
   margin-top: 10px;
    background-color: #FF5722;
    color: #FFFFFF;
    padding: 12px;
    font-size: 16px;
    width: 95%;
    margin-right: auto;
    padding-left: 30px;
    border-radius: 5px;
    cursor: pointer;      /* Makes button take full available space */
}

@media (max-width: 575px) {
    .mobilebtn23.mobilebtn-block23.mobiletext-uppercase23 {
        font-size: 16px;
        width: 96%;
        padding: 12px 10px;
        margin-right: 0;
        margin-left: 10px;
        text-align: center;
    }
}
.mobilebtn23 {
    display: inline-block;
/*    font-weight: 600;
*/    line-height: 1.5;
    color: white;
    background-color: rgb(244, 80, 0);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.mobiletext-uppercase23 {
    text-transform: uppercase !important;
}     


@media (max-width: 768px) { /* Adjust the breakpoint as per your mobile design */
    .searchster-categories-grid__itemst {
        width: calc(50% - 10px); /* Make items wider for mobile */
        font-size: 14px; /* Reduce font size for better readability */
        margin: 0 5px 10px; /* Adjust margin for smaller spacing */
        height: 120px; /* Reduce height to fit better on smaller screens */
    }
}

@media (max-width: 480px) { /* For very small screens */
    .searchster-categories-grid__itemst {
        font-size: 14px; /* Further reduce font size if necessary */
        margin: 0 0 10px; /* No horizontal margin */
        height: auto; /* Let height adjust naturally */
    }
}
@media (max-width: 768px) { /* For tablets and smaller screens */
    .searchster-categories-grid__item {
        width: calc(50% - 10px); /* Two items per row */
        font-size: 14px; /* Reduce font size */
        margin: 0 5px 10px; /* Adjust margin for smaller spacing */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .searchster-categories-grid__item {
        width: 50%; /* One item per row */
        font-size: 12px; /* Further reduce font size */
        margin: 0 0 10px; /* No horizontal margin */
    }
}
@media (max-width: 768px) { /* For tablets and smaller screens */
    .main-category-image {
        flex: 0 0 100%; /* Adjust flex for full width on mobile */
        margin-bottom: -100px; /* Add spacing if necessary */
    }
}
@media (max-width: 480px) {
  .searchster-categories-grid__item123 {
    position: relative; /* Needed for positioning the ::after arrow */
    margin-bottom: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
    border: 1px solid rgb(224, 224, 224) !important;
  }

  .searchster-categories-grid__item123::after {
    content: "❯";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }
}
@media (max-width: 480px) {
    .searchster-filters {
        margin-left: 40px;
    }
}

@media (max-width: 480px) { /* For smaller mobile screens */
    .main-category-image {
        flex: none; /* Disable flex behavior if needed */
        width: 100%; /* Ensure it spans the full width */
        height: auto; /* Allow natural height for responsiveness */
        display: none;
    }
}
@media (max-width: 768px) { /* For tablets and smaller screens */
    .searchster-categories-grid__item__name {
        font-size: 14px; /* Slightly smaller font size for better fit */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .searchster-categories-grid__item__name {
        font-size: 15px; /* Further reduce font size for small screens */
        color: #555; /* Optional: Slightly lighter color for aesthetics */
    }
}

@media (max-width: 768px) { /* For tablets and smaller screens */
    .type_description {
        left: 50px; /* Adjust positioning for smaller screens */
        top: -150px; /* Reduce the offset */
        width: 120px; /* Slightly smaller width */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .type_description {
        left: 215px; /* Further adjust the position for small screens */
        top: -210px; /* Reduce the top offset */
        width: 100px; /* Reduce the width */
        font-size: 14px; /* Adjust font size for readability */
    }
}

@media (max-width: 768px) { /* For tablets and smaller screens */
    .other-subcategories {
        margin-left: 20px; /* Reduce left margin */
        max-width: 300px; /* Reduce max width for smaller screens */
    }
}

@media (max-width: 480px) { /* For mobile screens */
    .other-subcategories {
        margin-left: 10px; /* Minimize left margin */
        max-width: 100%; /* Allow full width for small screens */
        padding: 15px; /* Adjust padding for better fit */
        border-radius: 5px; /* Slightly smaller border radius */
    }
}

@media (max-width: 1024px) {
    .product-boxd {
        display: flex;
        height: 100%;
        width: 100%;
        margin-bottom: 20px;
        padding: 10px;
        box-sizing: border-box;
        transition: 0.3s ease-in-out;
        margin-left: 5%; /* Adjust margin for smaller screens */
    }
}

@media (max-width: 768px) {
    .product-boxd {
        display: block; /* 'center' is invalid; use 'block' for proper layout */
        height: auto;
        width: 90%; /* Set width to 90% for balanced margins */
        margin: 100px auto 60px auto; /* Centers horizontally with auto margins */
        padding: 8px;
    }
}
@media (max-width: 768px) {
    .product-imager {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80%;  /* Increased height for better visibility */
        width: 80%;   /* Increased width for better proportion */
        margin-top: -40px;  /* Adjusted margin to improve spacing */
    }
}
#sortingSelectff {
    display: none;  /* Initially hide this dropdown */
}
#sortingSelectdff {
    display: none;  /* Initially hide this dropdown */
}
.mobile-pagination {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .mobile-pagination {
        margin-left: 70px !important;  /* Ensures this margin is applied */
        text-align: center !important;  /* Centers the text */
        width: fit-content !important;  /* Ensures container width fits content */
    }
}

.mobile-paginationss a.active {
    background-color: rgb(0, 0, 0);
    color: white;
}

.mobile-paginationss a {
    color: black;
    margin-right: 5px;
    cursor: pointer;
    padding: 1px 5px;
    text-decoration: none;
    transition: background-color .3s;
}
#mobileNextBtnss, #mobilePrevBtnss {
    background-color: rgb(255, 83, 0);
    color: white;
}
@media (max-width: 768px) {
    .mobile-paginationss {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        /* Optional: Adjust the width as needed */
        width: fit-content;  /* Ensures pagination container fits content width */
    }
}
.mobile-pagination {
    margin-bottom: 20px;
}
.mobile-paginationss {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    #productList {
        margin-right: 0;  /* Corrects right-side gap on 1024px screens */
    }
}
@media (max-width: 1024px) {
    .search-vehicle-form__controls {
        width: 90%;         /* Slightly narrower for better mobile layout */
        max-width: 100%;    /* Ensures content scales with smaller screens */
        padding: 8px;       /* Adjusted padding for compact screens */
    }
}
@media (max-width: 768px) {
    .product-boxd img {
        display: block;
        margin-left: 50px;
         margin-right: auto; 
        margin-top: -50px;
        margin-bottom: -50px !important;
        /* max-width: 90%; */
    }

}

.paginationss {
    display: flex
;
    justify-content: center;
}
.paginationss {
    display: flex
;
    padding-left: 0;
    list-style: none;
    margin-left: 200px;
}
.paginationss {
    display: flex
;
    padding-left: 0;
    list-style: none;
}

.paginationss a.active {
    background-color: rgb(0, 0, 0);
    color: white;
}
.paginationss a {
    color: black;
    float: left;
    cursor: pointer;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}
#nextBtnss, #prevBtnss {
    background-color: rgb(255, 83, 0);
    color: white;
}
.paginationss a {
    color: black;
    float: left;
    cursor: pointer;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}
#nextBtnss, #prevBtnss {
    background-color: rgb(255, 83, 0);
    color: white;
}
.paginationss a {
    color: black;
    float: left;
    cursor: pointer;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}
.searchster-categories-grid__item img.main-levels {
    max-height: 187px; /* Ensures it doesn't exceed this height */
    width: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Prevents overflow */
    height: 100%; /* Ensures it scales properly */
    margin-bottom: 10px;
    object-fit: contain; /* Ensures the whole image is visible */
}

/* Ensure the image scales properly on larger and smaller screens */
@media (max-width: 768px) { /* Tablets & Mobile */
    .searchster-categories-grid__item img.main-levels {
        max-height: 150px; /* Adjusts for smaller screens */
    }
}

@media (max-width: 480px) { /* Mobile screens */
    .searchster-categories-grid__item img.main-levels {
        max-height: 120px; /* Smaller height for smaller devices */
    }
}
.product-unavailable-badge {
    position: absolute;
    top: 90%;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 9px 20px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
    text-align: center;
}
.product-unavailable {
    opacity: 0.4;
    position: relative;
}
@media (max-width: 780px) {
.product-unavailable-badge {

    top: 85%;
}
}
