.srch-head {
    padding: 24px 0 10px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.srch-head-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.srch-head-title span { color: #ef5526; }

.srch-head-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    background: #f7f8fa;
    border: 1px solid #eceef1;
    border-radius: 999px;
    padding: 6px 14px;
}

.srch-head-meta i { color: #ef5526; }
.srch-head-meta strong { color: #111827; font-weight: 800; }
.srch-dot { color: #d1d5db; }
.srch-took { color: #16a34a; font-weight: 700; }

.srch-dym-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 18px;
    padding: 10px 16px;
    background: #fff5f0;
    border: 1px solid rgba(239, 85, 38, .22);
    border-radius: 10px;
    font-size: 14px;
    color: #374151;
}

.srch-dym-bar i { color: #ef5526; }
.srch-dym-bar a { color: #d8451f; font-weight: 800; text-decoration: underline; }

.srch-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 40px;
}

.srch-filter-box {
    border: 1px solid #ececf1;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    position: sticky;
    top: 90px;
}

.srch-filter-box h3 {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f1f5;
}

.srch-filter-box h3 i { color: #ef5526; font-size: 12px; }

.srch-facet-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 420px;
    overflow-y: auto;
}

.srch-facet-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-size: 13.5px;
    transition: background .14s, color .14s;
}

.srch-facet-list li a:hover { background: #fafafb; color: #ef5526; }

.srch-facet-list li.active a {
    background: #fff5f0;
    color: #d8451f;
    font-weight: 700;
}

.srch-facet-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.srch-facet-count {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 700;
    color: #9ca3af;
    background: #f1f1f5;
    border-radius: 999px;
    padding: 2px 9px;
}

.srch-facet-list li.active .srch-facet-count {
    background: #ef5526;
    color: #fff;
}

.srch-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.srch-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.srch-empty i { font-size: 38px; color: #d1d5db; margin-bottom: 12px; }
.srch-empty h3 { font-weight: 800; color: #111827; margin-bottom: 6px; }
.srch-empty p { font-size: 14px; margin-bottom: 16px; }

.srch-empty-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #ef5526;
    color: #fff;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .srch-layout { grid-template-columns: 1fr; }
    .srch-filter-box { position: static; }
    .srch-facet-list { flex-direction: row; flex-wrap: wrap; max-height: none; }
    .srch-facet-list li a { border: 1px solid #ececf1; }
}

.srch-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 34px 0 10px;
    flex-wrap: wrap;
}

.srch-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

    .srch-page-btn:hover {
        border-color: #ef5526;
        color: #ef5526;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(239,85,38,.15);
    }

    .srch-page-btn.is-active {
        background: #ef5526;
        border-color: #ef5526;
        color: #fff;
        box-shadow: 0 6px 16px rgba(239,85,38,.3);
        cursor: default;
    }

    .srch-page-btn i {
        font-size: 12px;
    }

.srch-page-dots {
    color: #9ca3af;
    font-weight: 700;
    padding: 0 2px;
}

.srch-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.srch-sort-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

.srch-sort-select {
    height: 40px;
    padding: 0 34px 0 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    transition: all .2s ease;
}

    .srch-sort-select:hover,
    .srch-sort-select:focus {
        border-color: #ef5526;
        outline: none;
    }

.srch-ai-card,
.srch-ai-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid #ffd8c6;
    border-radius: 18px;
    background: linear-gradient(120deg, #fff7f4 0%, #fff 60%);
    text-align: left;
}

.srch-ai-card { margin: 22px auto 18px; max-width: 620px; }
.srch-ai-strip { margin: 26px 0 6px; }

.srch-ai-avatar {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(140deg, #fff1ea, #ffe0d0);
    box-shadow: inset 0 0 0 1px rgba(239, 85, 38, .22), 0 6px 16px rgba(239, 85, 38, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.srch-ai-avatar dotlottie-wc { width: 64px; height: 64px; pointer-events: none; display: block; }

.srch-ai-copy { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; min-width: 0; }
.srch-ai-copy b { font-size: 15px; font-weight: 700; color: #14161c; }
.srch-ai-copy em { font-style: normal; font-size: 13px; line-height: 1.5; color: #5b6272; }

.srch-ai-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef5526 0%, #c93c11 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .18s ease;
    box-shadow: 0 6px 16px rgba(239, 85, 38, .3);
}

.srch-ai-btn:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(239, 85, 38, .38); }
.srch-ai-btn i { font-size: 13px; }
@media (max-width: 640px) {
    .srch-ai-card, .srch-ai-strip { flex-wrap: wrap; }
    .srch-ai-btn { width: 100%; justify-content: center; }
}
