/* সার্চ রেজাল্ট ড্রপডাউন ডিজাইন */
#alpha-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 99999;
    display: none;
    overflow: hidden;
    border: 1px solid #eee;
    border-top: none;
}

#alpha-search-results ul { list-style: none; margin: 0; padding: 0; }

#alpha-search-results li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f9f9f9;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}
#alpha-search-results li a:hover { background: #f4f6f8; }

#alpha-search-results img {
    width: 40px; height: 40px;
    object-fit: cover; border-radius: 5px; margin-right: 12px;
}

#alpha-search-results .info { flex-grow: 1; }
#alpha-search-results .title { display: block; font-weight: 600; font-size: 14px; color: #2c3e50; }
#alpha-search-results .price { display: block; font-size: 12px; color: #e67e22; font-weight: bold; margin-top: 2px; }

#alpha-search-results .badge {
    font-size: 10px; background: #dfe6e9; padding: 3px 6px; border-radius: 4px; color: #636e72; font-weight: 600;
}

.search-loading, .search-no-result { padding: 15px; text-align: center; color: #95a5a6; font-size: 13px; }