.search-autocomplete {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 10px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #eee;
}

.search-autocomplete ul {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}

.search-autocomplete li {
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
    cursor: pointer;
}

.search-autocomplete li:last-child {
    border-bottom: none;
}

.search-autocomplete li.selected,
.search-autocomplete li:hover {
    background-color: #f0f7ff;
}

.search-autocomplete .ajax-search-header {
    background: #f9f9f9;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    padding: 8px 15px;
    cursor: default;
}

.search-autocomplete .product-item-info {
    display: flex;
    align-items: center;
}

.search-autocomplete .product-item-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.search-autocomplete .product-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.search-autocomplete .product-details {
    display: flex;
    flex-direction: column;
}

.search-autocomplete .product-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #1979c3;
}

.search-autocomplete .product-price {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.search-autocomplete .qs-option-name {
    font-size: 14px;
}

.search-autocomplete .amount {
    float: right;
    color: #999;
    font-size: 12px;
}