#searchResult {
        border: none;
        background: #fff;
        position: absolute;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        z-index: 1000;
        margin-top: 2px;
        padding: 0;
    }
    #searchResult li {
        list-style: none;
        padding: 8px 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between; /* image left, name middle, price right */
        border-bottom: 1px solid #f1f1f1;
    }
    #searchResult li:hover {
        background: #f9f9f9;
    }
    #searchResult img {
        width: 45px;
        height: 45px;
        object-fit: cover;
        border-radius: 4px;
        margin-right: 10px;
    }
    .product-details {
        flex: 1;
        display: flex;
        align-items: center;
    }
    .product-name {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }
    .product-price {
        font-size: 14px;
        font-weight: bold;
        color: #008000;
        white-space: nowrap; /* prevent breaking line */
        margin-left: 10px;
    }