/* Autocomplete Results */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 2000;
    box-shadow: var(--shadow-hover);
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
    transition: background 0.2s;
}

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

.autocomplete-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.autocomplete-item img {
    width: 40px;
    height: 55px; /* Portrait aspect ratio */
    object-fit: cover;
    border-radius: 4px;
    background: #333;
}

.autocomplete-item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.autocomplete-item .title {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    line-height: 1.2;
}

.autocomplete-item .author {
    font-size: 12px;
    color: var(--text-dim);
}

.autocomplete-item .price {
    font-weight: bold;
    color: var(--accent-green);
    font-size: 14px;
}

/* Light theme adjustments if needed */
body[data-theme="light"] .autocomplete-item:hover {
    background: #f1f5f9;
}
