/**
 * COL323 WC Extension — Live Product Search (v0.8.17)
 */
.col323-ls-wrap {
    position: relative;
    display: block;
}

.col323-ls-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 420px;
    overflow-y: auto;
    text-align: left;
}

.col323-ls-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.col323-ls-item.is-active,
.col323-ls-item:hover {
    background: #f5f7fa;
}

.col323-ls-thumb {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 4px;
    background: #fafafa;
}

.col323-ls-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.col323-ls-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col323-ls-name mark,
.col323-ls-sku mark {
    background: transparent;
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
}

.col323-ls-sku {
    font-size: 12px;
    color: #757575;
}

.col323-ls-price {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 600;
    color: #1e1e1e;
    white-space: nowrap;
}

.col323-ls-price del {
    color: #9a9a9a;
    font-weight: 400;
    margin-right: 4px;
}

.col323-ls-message {
    padding: 10px 12px;
    margin: 0;
    font-size: 13px;
    color: #757575;
}

.col323-ls-viewall {
    padding: 9px 12px;
    margin: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #2271b1;
    cursor: pointer;
    background: #fafafa;
}

.col323-ls-viewall:hover {
    background: #f0f4f8;
}

@media (max-width: 600px) {
    .col323-ls-results {
        max-height: 320px;
    }

    .col323-ls-price {
        font-size: 12px;
    }
}
