/**
 * Styles for the search suggestions dropdown.
 */
.phcla-search-container {
    position: relative;
}
.phcla-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--phcla-bg);
    border: 1px solid var(--phcla-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px var(--phcla-shadow);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
}
.phcla-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--phcla-border);
    transition: background-color 150ms ease-out;
}
.phcla-suggestion-item:last-child {
    border-bottom: none;
}
.phcla-suggestion-item:hover,
.phcla-suggestion-item.active {
    background-color: var(--phcla-bg-secondary);
}
.phcla-suggestion-info {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.phcla-suggestion-name {
    font-weight: 500;
    color: var(--phcla-text);
}
.phcla-suggestion-name mark {
    background: rgba(45, 176, 112, 0.2);
    color: inherit;
    font-weight: 600;
    padding: 0;
    border-radius: 2px;
}
html.phcla-dark-mode .phcla-suggestion-name mark {
    background: rgba(46, 204, 113, 0.3);
}
.phcla-suggestion-category {
    font-size: 12px;
    color: var(--phcla-text-secondary);
}
.phcla-suggestion-price {
    font-weight: 600;
    color: var(--phcla-primary);
    padding-left: 16px;
}
.phcla-suggestions-empty {
    padding: 20px;
    text-align: center;
    color: var(--phcla-text-secondary);
}
.highlight-flash {
    animation: phcla-flash 1.5s ease-out;
}
@keyframes phcla-flash {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}