*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(244, 244, 249);
    color: rgb(65, 65, 65);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

header {
    background: #0078ad;
}

#autocomplete {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1278px;
    display: flex !important;
    margin: 50px auto;
    gap: 50px;
}

.ais-Highlight-highlighted {
    color: inherit;
    font-size: inherit;
}

#searchbox {
    margin-bottom: 2rem;
}

#pagination {
    margin: 2rem auto;
    text-align: center;
}

.resultList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.resultListItem {
    list-style: none;
    flex: 0 0 32.333333%;
    display: unset;
    margin: 0.75% 0;
}

h2 {
    margin-top: 10px;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex {
	display: flex;
}
.align-center {
	align-items: center;
}
.align-start {
    align-items: flex-start;
}
.space-between {
    justify-content: space-between;
}
.font-sub-heading {
    font-family: sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02px;
    line-height: 1.5;
}
.jcs-list-cards {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    background-color: white;
}
.mb12 {
    margin-bottom: 12px;
}
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#more-results-loader {
    display: none;
}

.suggestion-category-list {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    list-style: none;
    align-items: flex-start;
    row-gap: 5px;
    font-style: italic;
}

.suggestion-category-list li {
    color: #2874f0;
    font-weight: bold;
    font-size: 13px;
}


.suggestion-title {
    font-weight: bold;
    font-size: 16px;
}

.jcs-mrp-text, .jcs-discount-text, .jcs-item-price {
    margin-right: 8px;
 }

 .jcs-mrp-text{
   font-weight: 500 ;
   font-size: 14px ;
   letter-spacing: -0.06px ;
   line-height: 1.2;
   color: #b5b5b5 ;
   text-decoration: line-through;
 }
 .bold {
    font-weight: 700;
 }