/* Search Suggestions */

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-icon {
    color: #999;
    flex-shrink: 0;
}

.suggestion-text {
    flex: 1;
    font-size: 14px;
}

.suggestion-text strong {
    color: #333;
    font-weight: 600;
}


/* Search Results */

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.no-results {
    padding: 30px;
    text-align: center;
    color: #999;
}


/* Make search form relative untuk suggestions */

.block-search-block,
.header-searchform-box,
.form-search-width-category {
    position: relative;
}


/* Mobile responsive */

@media (max-width: 768px) {
    .search-suggestions {
        max-height: 200px;
    }
    .suggestion-item {
        padding: 8px 12px;
        font-size: 13px;
    }
}