/* ─── LIVE SEARCH DROPDOWN ──────────────────────── */
.ane-live-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.ane-live-search-dropdown.is-visible { display: block; }

.ane-lsd__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background 0.15s ease;
}

.ane-lsd__item:hover { background: #F5F5F5; }

.ane-lsd__thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.ane-lsd__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
    max-width: 300px;
}

.ane-lsd__name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 280px;
}

.ane-lsd__sku {
    font-size: 0.75rem;
    color: #999;
}

.ane-lsd__price {
    font-size: 0.8125rem;
    color: #F27131;
    font-weight: 600;
}

.ane-lsd__empty,
.ane-lsd__loading {
    padding: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

.ane-lsd__section-title {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #F0F0F0;
}
