.predictive-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 450px;
    overflow-y: auto;
    display: none;
}

.predictive-search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s;
}

.predictive-search-item:last-child {
    border-bottom: none;
}

.predictive-search-item:hover {
    background: #fcfcfc;
}

.predictive-search-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.predictive-search-info {
    flex-grow: 1;
}

.predictive-search-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.predictive-search-price {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.predictive-search-vat {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

.predictive-search-actions {
    margin-left: 10px;
}

.predictive-search-add {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.predictive-search-add:hover {
    opacity: 0.9;
}

.predictive-search-add.loading {
    pointer-events: none;
    opacity: 0.7;
}

.no-results-item {
    padding: 15px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .predictive-search-results {
        position: fixed;
        top: 60px; /* Adjust based on mobile header height */
        left: 10px;
        right: 10px;
    }
}
