.ta-search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid #d8dee6;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    margin-top: 6px;
    max-height: 420px;
    overflow-y: auto;
}

.ta-search-dropdown--open {
    display: block;
    animation: ta-dropdown-in 0.15s ease;
}

@keyframes ta-dropdown-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ta-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s ease;
}

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

.ta-search-item:hover,
.ta-search-item--active {
    background: #f0fdf9;
}

.ta-search-item__thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ta-search-item__thumb--empty {
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta-search-item__body {
    flex: 1;
    min-width: 0;
}

.ta-search-item__title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ta-search-item__title mark {
    background: #fef08a;
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

.ta-search-item__meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
}

.ta-search-no-results {
    padding: 16px 18px;
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

/* Scrollbar */
.ta-search-dropdown::-webkit-scrollbar { width: 4px; }
.ta-search-dropdown::-webkit-scrollbar-track { background: transparent; }
.ta-search-dropdown::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
