.live-product-search {
    position: relative;
}

.live-product-search-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 100000;
    max-height: min(24rem, 65vh);
    overflow-y: auto;
    padding: 0.4rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
}

.dark .live-product-search-panel {
    border-color: rgba(63, 63, 70, 0.9);
    background: rgba(9, 9, 11, 0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.live-product-search-message {
    padding: 1rem;
    color: #64748b;
    font-size: 0.75rem;
    text-align: center;
}

.live-product-search-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem;
    border-radius: 0.75rem;
    color: #0f172a;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.live-product-search-item:hover,
.live-product-search-item.is-active {
    background: #eff6ff;
}

.dark .live-product-search-item {
    color: #f8fafc;
}

.dark .live-product-search-item:hover,
.dark .live-product-search-item.is-active {
    background: rgba(37, 99, 235, 0.18);
}

.live-product-search-image {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border-radius: 0.65rem;
    background: #f1f5f9;
    object-fit: contain;
}

.dark .live-product-search-image {
    background: #18181b;
}

.live-product-search-info {
    min-width: 0;
    flex: 1 1 auto;
}

.live-product-search-name,
.live-product-search-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-product-search-name {
    font-size: 0.78rem;
    font-weight: 800;
}

.live-product-search-meta {
    margin-top: 0.15rem;
    color: #64748b;
    font-size: 0.65rem;
}

.live-product-search-price {
    flex: 0 0 auto;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 900;
}

.live-product-search-price.is-unavailable {
    color: #94a3b8;
}

.live-product-search-all {
    display: block;
    margin-top: 0.25rem;
    padding: 0.65rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 639px) {
    .live-product-search-panel {
        max-height: min(21rem, 55vh);
    }
}
