.wcvs-trigger {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    max-width: 100%;
}

.wcvs-trigger input {
    width: 100%;
    height: 44px;
    border: 0;
    padding: 0 44px 0 14px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
}

.wcvs-trigger-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #1f3fbf;
}

.wcvs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 9999;
    display: none;
}

.wcvs-overlay.active {
    display: block;
}

.wcvs-panel {
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.wcvs-head {
    padding: 12px;
    border-bottom: 1px solid #ececec;
    background: #2f5bea;
}

.wcvs-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}



#wcvsKeyword {
    width: 100%;
    height: 48px;
    border: 0;
    outline: none;
    padding: 0 80px 0 14px;
    font-size: 16px;
}

.wcvs-clear,
.wcvs-mic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #2f5bea;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcvs-clear {
    right: 42px;
    font-size: 24px;
    color: #666;
}

.wcvs-mic {
    right: 8px;
}

.wcvs-mic.is-listening {
    animation: wcvsPulse 1s infinite;
}

@keyframes wcvsPulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.15); }
    100% { transform: translateY(-50%) scale(1); }
}

.wcvs-body {
    max-height: 75vh;
    overflow-y: auto;
    background: #fff;
}

.wcvs-section {
    padding: 18px 20px;
}

.wcvs-section-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.wcvs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wcvs-tag {
    border: 1px solid #e2e2e2;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
}

.wcvs-tag:hover {
    border-color: #2f5bea;
    color: #2f5bea;
}

.wcvs-hot-box {
    background: #2f5bea;
    margin: 0 20px 20px;
    border-radius: 16px;
    padding: 16px;
}

.wcvs-hot-box .wcvs-section-title {
    color: #fff;
    margin-bottom: 12px;
}

.wcvs-hot-list {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
}

.wcvs-hot-item,
.wcvs-result-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 10px;
    transition: .2s ease;
}

.wcvs-hot-item:hover,
.wcvs-result-item:hover {
    background: #f6f8ff;
}

.wcvs-hot-item + .wcvs-hot-item,
.wcvs-result-item + .wcvs-result-item {
    border-top: 1px solid #f1f1f1;
}

.wcvs-hot-thumb,
.wcvs-result-thumb {
    width: 86px;
    min-width: 86px;
    position: relative;
}

.wcvs-hot-thumb img,
.wcvs-result-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.wcvs-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px 0 6px 0;
    z-index: 2;
}

.wcvs-hot-title,
.wcvs-result-title {
    font-size: 15px;
    line-height: 1.5;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.wcvs-hot-price,
.wcvs-result-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.wcvs-hot-price ins,
.wcvs-result-price ins {
    text-decoration: none;
}

.wcvs-hot-price del,
.wcvs-result-price del {
    color: #999;
    font-size: 13px;
    margin-left: 6px;
    font-weight: 400;
}

.wcvs-results-list {
    padding: 0;
}

.wcvs-loading,
.wcvs-no-result {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wcvs-view-all-wrap {
    text-align: center;
    padding: 14px 20px 20px;
}

.wcvs-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2f5bea;
    font-weight: 600;
}

body.wcvs-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .wcvs-panel {
        max-width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .wcvs-body {
        max-height: calc(100vh - 73px);
    }

    .wcvs-hot-thumb,
    .wcvs-result-thumb {
        width: 72px;
        min-width: 72px;
    }

    .wcvs-hot-title,
    .wcvs-result-title {
        font-size: 14px;
    }
}