    :root {
      --primary: #2563eb;
      --primary-dark: #1d4ed8;
      --secondary: #f8fafc;
      --dark: #1e293b;
      --light: #f8fafc;
      --gray: #94a3b8;
      --success: #10b981;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.sidebar{
	margin-left:15px!important;
}

    body {
      font-family: 'Poppins', sans-serif;
     /* background-color: #f1f5f9;  */
     background-color:white;
      color: var(--dark);
      line-height: 1.6;
    }

    .container_cus {
      display: flex;
      min-height: auto;
    }

    /* Sidebar Styles */
    .sidebar {
  width: 280px;
  background: rgb(236, 236, 236);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  margin-top:30px;
  height: fixed;
  overflow-y: hidden; /* Hides the scrollbar and prevents scrolling */
}
.sidebar::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Edge */
}

    .sidebar h3 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      color: var(--primary);
      border-bottom: 2px solid var(--primary);
      padding-bottom: 0.5rem;
    }

    .sidebar-group {
    padding:15px;
      margin-bottom: 1.5rem;
      background:rgb(236, 236, 236);
    }

    .sidebar-group h4 {
      font-size: 0.9rem;
      color: var(--dark);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .sidebar input, 
    .sidebar select {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #e2e8f0;
      border-radius: 0.375rem;
      margin-bottom: 1rem;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
      background-color:white;
      margin-left:5px;
    }

    .sidebar input:focus, 
    .sidebar select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .price-range {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1rem;
    }

    .price-range span {
      font-size: 0.875rem;
      /*color: var(--gray); */
      color:black;
    }

    .reset-btn {
      width: 100%;
      padding: 0.75rem;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 0.375rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .reset-btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    /* Main Content Styles */
    .main-content {
      flex: 1;
      padding: 2rem;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      background: white;
      padding: 1rem 1.5rem;
      height:70px;
      border-radius: 0.5rem;
      box-shadow: var(--shadow);
      background:rgb(236, 236, 236);
    }

    .header select {
      padding: 0.5rem 1rem;
      border: 1px solidrgb(0, 23, 53);
      border-radius: 0.375rem;
      font-family: 'Poppins', sans-serif;
      font-size:10px;
      margin-left: 0.5rem;
      background-color:white;
     
    }

    .cards {
      display: grid;
      /*grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
      gap: 1.5rem;
      background-color:white;
      padding:15px;
    }
    .card .card-footer{
      background:rgb(236, 236, 236);
    }

    /* Card Styles */
    .card {
      background:rgb(236, 236, 236);
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      position: relative;
   /*   margin-left:15px;
      margin-right:15px;
      margin-top:15px; */
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .carousel {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .carousel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .carousel img.active {
      opacity: 1;
    }

    .carousel-nav {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 5px;
      z-index: 10;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
    }

    .carousel-dot.active {
      background: white;
    }

    .favorite-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(255, 255, 255, 0.8);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
    }

    .favorite-btn:hover {
      background: white;
      transform: scale(1.1);
    }

    .card-body {
      padding: 1.25rem;
    }

    .card-body h4 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }

    .card-body small {
      color: var(--gray);
      font-size: 0.875rem;
    }

    .card-body p {
      color: var(--gray);
      font-size: 0.875rem;
      margin: 0.5rem 0;
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #e2e8f0;
    }

    .price {
      font-weight: 600;
      color: var(--primary);
      font-size: 1.25rem;
    }

    .btn {
      padding: 0.5rem 1rem;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 0.375rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn i {
      font-size: 0.875rem;
    }

    .tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: var(--success);
      color: white;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      font-size: 0.75rem;
      font-weight: 500;
      z-index: 10;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .container_cus {
        flex-direction: column;
      }
      
      .sidebar {
        width: 100%;
        height: auto;
        position: static;
      }
      
      .main-content {
        padding: 1rem;
      }
      
      .cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
    }

    @media (max-width: 640px) {
      .header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }
      
      .cards {
        grid-template-columns: 1fr;
      }
    }

        
        .main-image-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .vehicle-cards-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .vehicle-card {
        flex: 1 1 350px;
        max-width: 100%;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .vehicle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
    
    .vehicle-card-bg {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .vehicle-card:hover .vehicle-card-bg {
        filter: brightness(1.1);
    }
    
    .vehicle-card-type .vehicle-card-bg {
        background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    }
    

    
    .vehicle-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: white;
        text-align: center;
        transition: all 0.3s ease;
    }
    

    .vehicle-card-heading {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        transition: all 0.3s ease;
    }
    
    .vehicle-card:hover .vehicle-card-heading {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }
    
    .vehicle-card-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
        opacity: 0.9;
        transition: all 0.3s ease;
    }
    
    .vehicle-card:hover .vehicle-card-text {
        opacity: 1;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    
    .vehicle-card-btn {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(255,255,255,0.9);
        color: #333;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .vehicle-card-type .vehicle-card-btn {
        background: rgba(78, 84, 200, 0.9);
        color: white;
    }
    
    .parts-card-type .vehicle-card-btn {
        background: rgba(255, 65, 108, 0.9);
        color: white;
    }
    
    .vehicle-card-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 3px 10px rgba(255, 255, 255, 0.4);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .vehicle-card {
            height: 250px;
            flex: 1 1 100%;
        }
        
        .vehicle-card-heading {
            font-size: 1.3rem;
        }
        
        .vehicle-card-text {
            font-size: 0.85rem;
        }
    }
    
    @media (max-width: 480px) {
        .vehicle-card {
            height: 220px;
        }
    
        .vehicle-card-content {
            padding: 15px;
        }
        
        .vehicle-card-heading {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .vehicle-card-text {
            margin-bottom: 10px;
            display: none;
        }
        
        .vehicle-card-btn {
            padding: 6px 15px;
            font-size: 0.8rem;
        }
    }
    .vehicle-card-text{
      color:white;
      text-decoration:none;
    }



    .banner-container {
    position: relative;
    overflow: hidden;
}

.banner_main_image {
    width: 100%;
    height: auto;
    max-height: 210px;
    object-fit: cover;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; opacity: 0.7; }
    70% { left: 150%; opacity: 0.8; }
    100% { left: 150%; opacity: 0; }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .banner_main_image {
        max-height: 140px;
    }
}

@media screen and (max-width: 480px) {
    .banner_main_image {
        max-height: 100px;
    }
}

    .unique-body-style {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
        overflow-x: hidden;
    }

    .custom-products-section {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        position: relative;
    }

    .custom-products-section .section-title {
        background: #005eb8;
        color: #fff;
        padding: 10px;
        margin: -20px -20px 20px;
        border-radius: 10px 10px 0 0;
    }

    .product-slider-container {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .product-slider-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .product-slider-track::-webkit-scrollbar {
        display: none;
    }

    .product-item-card {
        background: #fff;
        flex: 0 0 auto;
        width: 200px;
        border-radius: 5px;
        padding: 10px;
        position: relative;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-item-card img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .product-item-card .product-link {
        display: block;
        color: #005eb8;
        font-weight: bold;
        text-decoration: none;
        margin-top: 5px;
    }

    .product-item-card .product-price {
        font-weight: bold;
        color: #333;
        margin: 5px 0 0;
    }

    .product-tag {
        position: absolute;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 3px;
        color: #fff;
    }

    .product-tag.new-arrival {
        top: 8px;
        left: 8px;
        background: #ffd500;
        color: #000;
        z-index: 9999;
    }

    .product-tag.condition-tag {
        bottom: 8px;
        right: 8px;
        background: #00a2ff;
        z-index: 9999;
    }

    .slider-nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 20px;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-nav-button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .slider-prev-btn {
        left: 10px;
    }

    .slider-next-btn {
        right: 10px;
    }

    .product-image-wrapper {
        position: relative;
    }

    .product-image-wrapper img {
        display: block;
        width: 100%;
        border-radius: 5px;
    }

    @media (max-width: 768px) {
        .product-item-card {
            width: 160px;
        }
    }

    @media (max-width: 480px) {
        .product-item-card {
            width: 140px;
        }
        
        .slider-nav-button {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }
    }

    #nextSlideBtn{
      z-index: 999999;
    }
    .slider_p_images{
      width:200px; height:150px; 
    }


    .responsive-image {
  width: 200px !important;
  height: 150px !important;
  object-fit: cover !important;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .responsive-image {
    width: 150px !important;
    height: 110px !important;
  }
}

/* Small screens (large phones) */
@media (max-width: 576px) {
  .responsive-image {
    width: 120px !important;
    height: 90px !important;
  }
}

/* Extra small screens (small phones) */
@media (max-width: 400px) {
  .responsive-image {
    width: 100px !important;
    height: 75px !important;
  }
}

#slider-prev-btn{
  z-index:999999;
}
  #prevSlideBtn{
    z-index:99;
  }
  .icons_and_Car_names {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  /* Make title + arrow inline and spaced */
  .header-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .brand-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .brand-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .brand-name {
    position: relative;
    text-decoration: none !important;
    color: rgb(159, 4, 197);
    font-size: 13.5px;
    transition: font-weight 0.3s ease;
  }

  .brand-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    background-color: #fff;
    width: 0%;
    transition: width 0.3s ease;
  }

  .brand-name:hover::after {
    width: 100%;
  }

  .brand-name:hover {
    font-weight: bold;
  }

  .toggle-arrow {
    font-size: 20px;
    color: rgb(159, 4, 197);
    transition: transform 0.3s ease;
  }

  /* Desktop: arrow hidden, brands-list shown */
  .toggle-arrow {
    display: none;
  }

  .brands-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* MOBILE SPECIFIC */
  @media (max-width: 768px) {
    .toggle-arrow {
      display: inline-block; /* show arrow on mobile */
    }

    /* Hide list with transition */
    .brands-list {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.5s ease;
      flex-direction: column;
      gap: 10px;
      margin-top: 0;
    }

    .brands-list.show {
      max-height: 1000px; /* big enough */
      opacity: 1;
      margin-top: 10px;
    }

    /* Rotate arrow when open */
    .toggle-arrow.rotate {
      transform: rotate(180deg);
    }
  }

     button {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

button.learn-more {
 width: 12rem;
 height: auto;
}

button.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: #282936;
 border-radius: 1.625rem;
}

button.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

button.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

button.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

button.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.75rem 0;
 margin: 0 0 0 1.85rem;
 color: #282936;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button:hover .circle {
 width: 100%;
}

button:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

button:hover .button-text {
 color: #fff;
}

.sidebar-group .search-container_cus {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar-group .search-container_cus input {
  width: 100%;
  padding-right: 35px; /* space for the icon */
  padding-left: 10px;
  height: 35px;
}

.sidebar-group .search-container_cus i.fa-search {
  position: absolute;
  right: 10px;
  color: #555;
  cursor: pointer;
  top:19.8px;
}

  .sidebar-group {

    transition: max-height 0.3s ease-in-out;
  }
  #searchInput{
    width:220px!important;
  }

  .filter-toggle {
    display: none;
    background: #333;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
  }

  .filter-toggle::after {
    content: "▼";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
  }

  .filter-toggle.active::after {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .sidebar-group {
      display: none;
    }

    .sidebar-group.active {
      display: block;
    }

    .filter-toggle {
      display: block;
    }
  }


  
.car-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  gap: 10px;
}

.car-header img {
  width: 30px;
  margin-right: 10px;
}

.car-header .car-count {
  font-weight: bold;
  color: #0047ab;
  font-size: 24px;
}

.car-header span:last-child {
  margin-left: auto;
  font-size: 14px;
  white-space: nowrap;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.car-card {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
}

.car-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.car-badge-new {
  position: absolute;
  top: 6px;
  left: 6px;
  background: yellow;
  color: black;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 3px;
}

.car-badge-damaged {
  background: #00aaff;
  color: white;
  font-size: 13px;
  padding: 4px 8px;
  text-align: center;
}

.car-card.car-show-all {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0047ab;
  color: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

.car-card.car-show-all:hover {
  background: #003080;
}

.car-arrow {
  margin-left: 10px;
  font-size: 20px;
}

@media (max-width: 600px) {
  .car-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .car-header span:last-child {
    margin-left: 0;
    font-size: 13px;
  }

  .car-card img {
    height: 90px;
  }

  .car-card.car-show-all {
    font-size: 16px;
    padding: 10px;
  }
}

        .carousel-container {
            position: relative;
            max-width: 100%;
            overflow: hidden;
            margin: 0 auto;
        }
        
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        
        .carousel-slide {
            min-width: 100%;
            position: relative;
        }
        
        .banner-container {
            position: relative;
            width: 100%;
        }
        
        .banner_main_image {
            width: 100%;
            display: block;
        }
        
        .shine-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.3);
        }
        
        .dot.active {
            background-color: rgba(0, 0, 0, 0.7);
            border-color: rgba(255, 255, 255, 0.7);
        }



        

.category-item {

    font-size: 1.07rem; /* increased font size */

}



.category-icon {
    font-size: 0.9rem; /* slightly larger icon */
   
}
.category-count {
   font-size: 0.9rem;
   
}


.advertisement-banner {
    width: 100%;
    background: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80') no-repeat center center;
    background-size: cover;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 10px;
}

.full-width-banner {
    max-width: 100%;
    color: white;
    position: relative;
}

.btn-right {
    text-align: right;
    margin-top: 20px;
}

.vehicle-card-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


.banner-container {
    position: relative;
    overflow: hidden;
}

.banner_main_image {
    width: 100%;
    height: auto;
    max-height: 210px;
    object-fit: cover;
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; opacity: 0.7; }
    70% { left: 150%; opacity: 0.8; }
    100% { left: 150%; opacity: 0; }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .banner_main_image {
        max-height: 140px;
    }
}

@media screen and (max-width: 480px) {
    .banner_main_image {
        max-height: 100px;
    }
}

    .unique-body-style {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 20px;
        overflow-x: hidden;
    }

    .custom-products-section {
        background: #f9f9f9;
        padding: 50px;
        border-radius: 10px;
        position: relative;
    }

    .custom-products-section .section-title {
        background: #005eb8;
        color: #fff;
        padding: 10px;
        margin: -20px -20px 20px;
        border-radius: 10px 10px 0 0;
    }

    .product-slider-container {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .product-slider-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .product-slider-track::-webkit-scrollbar {
        display: none;
    }

    .product-item-card {
        background: #fff;
        flex: 0 0 auto;
        width: 200px;
        border-radius: 5px;
        padding: 10px;
        position: relative;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product-item-card img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .product-item-card .product-link {
        display: block;
        color: #005eb8;
        font-weight: bold;
        text-decoration: none;
        margin-top: 5px;
    }

    .product-item-card .product-price {
        font-weight: bold;
        color: #333;
        margin: 5px 0 0;
    }

    .product-tag {
        position: absolute;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 3px;
        color: #fff;
    }

    .product-tag.new-arrival {
        top: 8px;
        left: 8px;
        background: #ffd500;
        color: #000;
        z-index: 9999;
    }

    .product-tag.condition-tag {
        bottom: 8px;
        right: 8px;
        background: #00a2ff;
        z-index: 9999;
    }

    .slider-nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 20px;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-nav-button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .slider-prev-btn {
        left: 10px;
    }

    .slider-next-btn {
        right: 10px;
    }

    .product-image-wrapper {
        position: relative;
    }

    .product-image-wrapper img {
        display: block;
        width: 100%;
        border-radius: 5px;
    }

    @media (max-width: 768px) {
        .product-item-card {
            width: 160px;
        }
    }

    @media (max-width: 480px) {
        .product-item-card {
            width: 140px;
        }
        
        .slider-nav-button {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }
    }

    #nextSlideBtn{
      z-index: 999999;
    }
    .slider_p_images{
      width:200px; height:150px; 
    }


    .responsive-image {
  width: 200px !important;
  height: 150px !important;
  object-fit: cover !important;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .responsive-image {
    width: 150px !important;
    height: 110px !important;
  }
}

/* Small screens (large phones) */
@media (max-width: 576px) {
  .responsive-image {
    width: 120px !important;
    height: 90px !important;
  }
}

/* Extra small screens (small phones) */
@media (max-width: 400px) {
  .responsive-image {
    width: 100px !important;
    height: 75px !important;
  }
}


#slider-prev-btn{
  z-index:999999;
}
  #prevSlideBtn{
    z-index:99;
  }
  .icons_and_Car_names {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  /* Make title + arrow inline and spaced */
  .header-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .brand-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .brand-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .brand-name {
    position: relative;
    text-decoration: none !important;
    color: rgb(159, 4, 197);
    font-size: 13.5px;
    transition: font-weight 0.3s ease;
  }

  .brand-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    background-color: #fff;
    width: 0%;
    transition: width 0.3s ease;
  }

  .brand-name:hover::after {
    width: 100%;
  }

  .brand-name:hover {
    font-weight: bold;
  }

  .toggle-arrow {
    font-size: 20px;
    color: rgb(159, 4, 197);
    transition: transform 0.3s ease;
  }

  /* Desktop: arrow hidden, brands-list shown */
  .toggle-arrow {
    display: none;
  }

  .brands-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* MOBILE SPECIFIC */
  @media (max-width: 768px) {
    .toggle-arrow {
      display: inline-block; /* show arrow on mobile */
    }

    /* Hide list with transition */
    .brands-list {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.5s ease;
      flex-direction: column;
      gap: 10px;
      margin-top: 0;
    }

    .brands-list.show {
      max-height: 1000px; /* big enough */
      opacity: 1;
      margin-top: 10px;
    }

    /* Rotate arrow when open */
    .toggle-arrow.rotate {
      transform: rotate(180deg);
    }
  }


  .sidebar-group .search-container_cus {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar-group .search-container_cus input {
  width: 100%;
  padding-right: 35px; /* space for the icon */
  padding-left: 10px;
  height: 35px;
}

.sidebar-group .search-container_cus i.fa-search {
  position: absolute;
  right: 10px;
  color: #555;
  cursor: pointer;
  top:19.8px;
}

  .sidebar-group {

    transition: max-height 0.3s ease-in-out;
  }
  #searchInput{
    width:220px!important;
  }

  .filter-toggle {
    display: none;
    background: #333;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
  }

  .filter-toggle::after {
    content: "▼";
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
  }

  .filter-toggle.active::after {
    transform: rotate(180deg);
  }

  @media (max-width: 768px) {
    .sidebar-group {
      display: none;
    }

    .sidebar-group.active {
      display: block;
    }

    .filter-toggle {
      display: block;
    }
  }


  .custom-form-style select,
  .custom-form-style input,
  .custom-form-style button {
    font-family: 'Georgia', 'Times New Roman', serif!important;
    font-style: italic!important;
  }
