/*your custom css goes here*/ 

.search-container {
    display: flex;
    max-width: 300px;
}

/* Style for the input box */
.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 13px;
    outline: none;
}

/* Style for the search button */
.search-button {
    padding: 10px 10px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 13px;
}

/* Hover effect for the search button */
.search-button:hover {
    background-color: #0056b3;
}

.c-ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.c-li {
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack the children vertically */
    justify-content: center; /* Horizontally center the content */
    flex: 0 0 calc(32.88% - 5px); /* 3 columns with 10px spacing between */
    margin: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #e62e04;
}
.c-li h6 {
    margin-bottom: auto;
}

.cart-icon {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  svg {
    fill: #000; /* Change the fill color as desired */
    width: 24px; /* Adjust the icon size as needed */
    height: 24px;
    margin-right: 8px; /* Adjust spacing between icon and count */
  }
  
  .count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red; /* Change the badge background color */
    color: white; /* Change the badge text color */
    border-radius: 50%; /* Make the badge circular */
    padding: 4px 8px; /* Adjust padding to fit the count */
    font-size: 12px; /* Adjust font size as needed */
  }
