.highlighted {
    background-color: #4b89dc1e; 
    color: #1a73e8;
    border-radius: 3px;
    padding: 0 2px;
}

li:hover .highlighted {
    background-color: #ffffff40;
    color: #fff;
}

.suggestion-item.active {
    background: #4b89dc !important;
    color: #fff !important;
}

.suggestion-item.active span {
    color: #fff !important;
}

/* Product Preview Cards - Desktop */
.product-preview-card {
    width: 140px;
    min-width: 140px;
}

/* Product Preview Cards - Mobile */
@media (max-width: 767px) {
    .product-preview-card {
        width: 120px !important;
        min-width: 120px !important;
    }
    .product-preview-card img {
        height: 100px !important;
    }
}

/* Scrollbar styling for product preview */
.suggestion-list li > div::-webkit-scrollbar {
    height: 6px;
}

.suggestion-list li > div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggestion-list li > div::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.suggestion-list li > div::-webkit-scrollbar-thumb:hover {
    background: #999;
}