*{
    font-family: "Inter", sans-serif;
  }
          .no-left-padding {
              padding-left: 0 !important; 
             
              
          }
     
          .product-grid {
              display: flex;
              flex-wrap: wrap;
              margin-right: -15px;
              margin-left: -15px;
          }
          .product-item {
              padding: 15px;
              width: 33.3333%;
          }

  
          .pagination .page-item .page-link {
      color: black;
  }
  /*FOR NEW LIMOS CODE*/
  #results {
    margin-top: 20px;
}
.tyre-size, .brand, .category {
    margin-bottom: 5px;
}
/*END*/

  .btn-primary:default,
  .btn-primary:hover,
  .btn-primary:active,
  .btn-primary:focus{
      background-color: #ee0d09;
      border: none;
      cursor: pointer;
  }
  .pagination .page-item.active .page-link {
      background-color: #ee0d09;
      border-color: #ee0d09;
  }
/* circular part for card*/
.card {
    overflow: hidden;
    border-radius: 10px; /* This will give the card a rounded edge */
  
}

.card-img-top {
    width: 100%;
    background-color: white; /* Ensure the image section remains white */
}

.card-body {
    position: relative;
    padding: 10px;
    background-size: 100% 50%;
}


/* Ensure pagination container has adequate spacing */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Style pagination items */
/* Ensure pagination container has adequate spacing */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

/* Style pagination list */
.pagination {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Style pagination items */
.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item .page-link {
    color: #000; /* Adjust color as needed */
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    display: block;
}

.pagination .page-item .page-link:hover {
    background-color: #f0f0f0; /* Adjust hover color as needed */
}

.pagination .page-item.active .page-link {
    background-color: #ee0d09; /* Adjust active background color as needed */
    color: #fff;
    border-color: #ee0d09;
}

/* Ensure responsive layout */
@media (max-width: 768px) {
    .pagination .page-item {
        flex: 1 1 auto;
        margin: 5px 0;
    }

    .pagination {
        justify-content: space-around;
    }
}
/* end of pagination */


/*end of circular part */
.img-body{
    margin-top: 40px;
}
  .card img {
    height: 200px;
    object-fit: contain;
    margin-top: 20px;
}
.card-title{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
}
.card-text-main{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    font-style: normal;
}
.card-text-sub{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    font-style: normal;
}
.card-text-price{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-size: 35px;
    text-transform: uppercase;
    color: #06b0ef;
} 
.img-body img{
    transition: all 1.1s ease;
}
.img-body img:hover {
    transform: scale(1.2);
}

.card:hover .stock-label {
    transform: scale(1.2);
}
  .filters {
      padding: 10px;
      background-color: #f1f1f1;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
  }
  
  .filters select, .filters button {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      flex: 1;
      min-width: 150px;
  }
  .stock {
      position: absolute;
      top: 0;
      right: 0;
      padding: 5px 10px;
      border-radius: 3px;
      font-size: 12px;
      background-color: #28a745;
      color: white;  
  }

  .in-stock {
      background-color: #28a745; /* kingsway blue color */
  }
  
  .out-of-stock {
      background-color: #707070; /* Kingsway Red color */
  }

  /*styles for brand images*/

  .brand-stock-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Adjust as needed */
}

.brand {
    margin-right: 10px; /* Space between brand image and stock label */
}

.brand img {
    margin-top: 0;
    width: 120px; /* Adjust size as needed */
    height: auto;
}

  /*end of styles for brand images*/

/*styles for dropdown*/
.cat-list {
    list-style: none;
    padding: 0;
}
.cat-list li {
    margin-bottom: 10px;
}
.cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.sidebar-buttons {
    margin-top: 20px;
}
.sidebar-buttons button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ee0d09;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}
.sidebar-buttons button:last-child {
    background-color: #f1f1f1;
    color: #ee0d09;
}
/*end of styles for dropdown*/


  /* Responsive styles */
  @media (max-width: 768px) {
      .product-item {
          flex: 1 1 calc(50% - 30px); /* Adjusts width for 2 items per row on tablets */
      }
  }
  
  @media (max-width: 480px) {
      .product-item {
          flex: 1 1 100%; /* Adjusts width for 1 item per row on mobile */
      }
      .filters {
          flex-direction: column;
      }
      .filters select, .filters button {
          width: 100%;
      }
  }
  /*added for modern styling*/
  .filter-wrapper {
    overflow-y: auto;
}
  /*end of additionals*/
  @media screen and (max-width: 768px) {
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}