.ai-search-form {
    position: relative;
}

.ai-search-suggestions {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 6px;
    background: #fff;
    border: 1px solid #dbe8e2;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(20, 49, 38, .14);
}

.ai-search-suggestion {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 13px;
    color: #183a2e;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
}

.ai-search-suggestion:hover,
.ai-search-suggestion:focus-visible {
    color: #007f55;
    background: #effaf5;
    outline: 0;
}

.ai-search-suggestion small {
    flex: 0 0 auto;
    color: #718078;
    font-size: 12px;
    font-weight: 500;
}

.ai-search-insight {
    margin: 0 0 20px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f0fbf6, #fff);
    border: 1px solid #ccebdd;
    border-radius: 14px;
}

.ai-search-insight__title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 8px;
    color: #087b56;
    font-size: 18px;
    font-weight: 650;
}

.ai-search-insight__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 12px;
    background: #009b68;
    border-radius: 50%;
}

.ai-search-insight p {
    margin: 0;
    color: #40574e;
    line-height: 1.65;
}

.ai-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.ai-search-chip {
    padding: 5px 10px;
    color: #087b56;
    font-size: 13px;
    font-weight: 600;
    background: #e5f7ef;
    border-radius: 999px;
}

@media (max-width: 549px) {
    .ai-search-suggestion small { display: none; }
    .ai-search-insight { padding: 15px; }
}
