* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #ff7b4a;
    --accent-2: #e85d2a;
    --accent-glow: rgba(255,123,74,0.3);
    --bg: #0a0806;
    --bg-card: #131009;
    --bg-card-hover: #1a1510;
    --surface: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(255,123,74,0.35);
    --text: #f0ebe3;
    --text-muted: #a89880;
    --text-dim: #6a5c4e;
    --green: #6dd672;
}

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10,8,6,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.15s;
}

.brand:hover { opacity: 0.8; }

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 6px var(--accent); }
    50%       { box-shadow: 0 0 18px var(--accent), 0 0 32px rgba(255,123,74,0.3); }
}

.topbar-slogan {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ============================================================
   MAIN WRAP
   ============================================================ */
.main-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    transition: min-height 0.5s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}

.hero.collapsed {
    min-height: 0;
    padding: 28px 0 20px;
}
.hero.collapsed .hero-title,
.hero.collapsed .hero-sub,
.hero.collapsed .ai-steps,
.hero.collapsed .ai-badge,
.hero.collapsed .quick-prompts {
    display: none;
}
.hero.collapsed .hero-bg { opacity: 0; }

/* Background orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.6s;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #ff7b4a, transparent);
    top: -200px; left: -150px;
    animation-delay: 0s;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ff4a8b, transparent);
    bottom: -100px; right: -100px;
    animation-delay: 3s;
    opacity: 0.1;
}
.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4a7bff, transparent);
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 5s;
    opacity: 0.07;
}

@keyframes orb-float {
    0%, 100% { transform: scale(1) translateY(0); }
    50%       { transform: scale(1.08) translateY(-20px); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 860px;
    gap: 20px;
}

/* AI badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-accent);
    background: rgba(255,123,74,0.08);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    animation: fade-up 0.6s ease both;
}

.ai-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Hero title */
.hero-title {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #f5ede0;
    animation: fade-up 0.6s 0.1s ease both;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    animation: fade-up 0.6s 0.18s ease both;
}

/* ============================================================
   AI STEPS
   ============================================================ */
.ai-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 8px 0 4px;
    animation: fade-up 0.6s 0.24s ease both;
}

.ai-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: default;
}

.ai-step.active {
    border-color: var(--border-accent);
    background: rgba(255,123,74,0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,123,74,0.15);
}

.ai-step-icon {
    font-size: 22px;
    line-height: 1;
}

.ai-step-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.ai-step-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.ai-step-text span {
    font-size: 11px;
    color: var(--text-dim);
}

.ai-step-arrow {
    font-size: 18px;
    color: var(--text-dim);
    padding: 0 2px;
    opacity: 0.5;
}

/* ============================================================
   SEARCH BOX
   ============================================================ */
.search-box {
    width: 100%;
    max-width: 640px;
    animation: fade-up 0.6s 0.32s ease both;
}

.search-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    padding-left: 4px;
    transition: opacity 0.3s;
}

.search-label-icon { font-size: 16px; }

/* Search form */
.search-form {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    background: rgba(20,16,12,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 20px;
    gap: 10px;
}

.search-form:focus-within {
    border-color: var(--border-accent);
    box-shadow:
        0 24px 64px rgba(0,0,0,0.5),
        0 0 0 4px rgba(255,123,74,0.08),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Textarea wrapper */
.textarea-wrap {
    position: relative;
    flex: 1;
    padding: 0;
    min-width: 0;
}

.search-textarea {
    display: block;
    width: 100%;
    min-height: 28px;
    max-height: 120px;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    line-height: 1.55;
    caret-color: var(--accent);
    position: relative;
    z-index: 2;
    padding: 0;
}

.search-textarea::placeholder { color: transparent; }

/* Animated placeholder */
.textarea-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dim);
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 100%;
}

/* скрываем placeholder когда поле занято */
.search-textarea:not(:placeholder-shown) + .textarea-placeholder,
.search-textarea:focus + .textarea-placeholder.hidden {
    opacity: 0;
}
.textarea-placeholder.hidden { opacity: 0; }

.typed-caret {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: var(--accent);
    margin-left: 1px;
    border-radius: 1px;
    vertical-align: middle;
    animation: blink 1s steps(1) infinite;
}

/* Bottom actions row — скрыт в однострочном режиме */
.search-actions {
    display: none;
}

.char-hint {
    font-size: 12px;
    color: var(--text-dim);
    transition: color 0.2s;
    min-width: 60px;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-search:active { transform: scale(0.97); }

.btn-search.loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-search-icon {
    font-size: 16px;
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}


/* ============================================================
   QUICK PROMPTS
   ============================================================ */
.quick-prompts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    animation: fade-up 0.6s 0.4s ease both;
}

.quick-label {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    margin-right: 4px;
}

.prompt-chip {
    padding: 9px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-muted);
    font-size: 13px;
    font-family: Inter, Arial, sans-serif;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
}

.prompt-chip:hover {
    background: rgba(255,123,74,0.1);
    border-color: var(--border-accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================================
   AI THINKING (loading state)
   ============================================================ */
.ai-thinking {
    max-width: 820px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-thinking-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
}

.ai-thinking-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,123,74,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

.ai-thinking-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 32px;
}

.ai-thinking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
    animation: fade-in-step 0.4s ease both;
}

.ai-thinking-step.done { color: var(--green); }
.ai-thinking-step.active { color: var(--text-muted); }

.step-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--text-dim);
}

.ai-thinking-step.done .step-dot { background: var(--green); }
.ai-thinking-step.active .step-dot {
    background: var(--accent);
    animation: pulse-dot 1s ease-in-out infinite;
}

@keyframes fade-in-step {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESULTS SECTION
   ============================================================ */
.results-section { margin-top: 4px; }

.error {
    max-width: 820px;
    margin: 0 auto;
    color: #ffb4a0;
    background: rgba(180,40,20,0.2);
    border: 1px solid rgba(255,100,80,0.25);
    padding: 14px 20px;
    border-radius: 14px;
}

.results-summary {
    max-width: 820px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dim);
}

.results-summary strong { color: var(--text-muted); }

.results-new-search {
    margin-left: auto;
    font-size: 13px;
    color: var(--accent);
    cursor: pointer;
    background: none;
    border: none;
    font-family: Inter, Arial, sans-serif;
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.15s;
}

.results-new-search:hover { background: rgba(255,123,74,0.08); }

/* Intent panel (legacy — скрыт) */
.intent-panel { display: none; }

/* ── Intent compact bar ──────────────────────────────────────── */
.intent-bar {
    max-width: 820px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255,123,74,0.06);
    border: 1px solid rgba(255,123,74,0.16);
}

.ibar-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-right: 2px;
    white-space: nowrap;
}

.ibar-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,123,74,0.1);
    border: 1px solid rgba(255,123,74,0.2);
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
}

.ibar-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    font-weight: 600;
}

/* Facets */
.facets {
    max-width: 820px;
    margin: 0 auto 22px;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.facets h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.facets h4 {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.facets-grid { display: flex; flex-wrap: wrap; gap: 18px; }

.facets ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.facets li {
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 12px;
}

/* Empty */
.empty-state {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 24px;
    border-radius: 20px;
    background: var(--surface);
    color: var(--text-muted);
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 4px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    animation: card-in 0.4s ease both;
    /* сброс стилей ссылки */
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 16px 48px rgba(255,90,30,0.14);
    transform: translateY(-4px);
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Stagger cards */
.product-card:nth-child(1)  { animation-delay: 0.00s; }
.product-card:nth-child(2)  { animation-delay: 0.04s; }
.product-card:nth-child(3)  { animation-delay: 0.08s; }
.product-card:nth-child(4)  { animation-delay: 0.12s; }
.product-card:nth-child(5)  { animation-delay: 0.16s; }
.product-card:nth-child(6)  { animation-delay: 0.20s; }
.product-card:nth-child(7)  { animation-delay: 0.24s; }
.product-card:nth-child(8)  { animation-delay: 0.28s; }
.product-card:nth-child(9)  { animation-delay: 0.32s; }
.product-card:nth-child(n+10) { animation-delay: 0.36s; }

/* Product image */
.product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1a1510;
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover .product-img { transform: scale(1.04); }

/* Image loading skeleton */
.product-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a1510 25%, #222015 50%, #1a1510 75%);
    background-size: 200% 100%;
    animation: skeleton 1.4s ease infinite;
    z-index: 0;
}

.product-img-wrap.loaded::before { display: none; }

@keyframes skeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-img { position: relative; z-index: 1; }

.product-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #3a3028;
    z-index: 2;
    background: #1a1510;
}

/* Source badge */
.product-source-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 9px;
    border-radius: 8px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    z-index: 3;
}

/* ── Product rating (stars) ──────────────────────────────────── */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    font-size: 14px;
    color: #f5a623;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-val {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
}

/* Card body */
.product-body {
    padding: 14px 16px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-size: 14px;
    line-height: 1.5;
    color: #e0d8cc;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.02em;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
}

.tag {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255,123,74,0.1);
    color: #c4905a;
    font-size: 11px;
    border: 1px solid rgba(255,123,74,0.15);
}

.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: 0 0 18px 18px;       /* скруглён только снизу — вместе с картой */
    background: linear-gradient(135deg, #ff8533, #e85d2a);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s, letter-spacing 0.18s;
    letter-spacing: 0.01em;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.18);
    margin-top: 0;
    flex-shrink: 0;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #ff9a55, #ff7b4a);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.18), 0 4px 24px rgba(255,123,74,0.38);
    letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-steps { gap: 2px; }
    .ai-step-arrow { display: none; }
}

@media (max-width: 700px) {
    .topbar { padding: 14px 20px; }
    .topbar-slogan { display: none; }
    .main-wrap { padding: 0 16px 60px; }
    .hero { padding: 40px 0 30px; }
    .hero-title { font-size: 28px; }
    .hero-sub { font-size: 15px; }
    .ai-step-text span { display: none; }
}

@media (max-width: 540px) {
    .products-grid { grid-template-columns: 1fr; }
    .search-actions { flex-direction: column; gap: 10px; align-items: flex-end; }
    .btn-search { width: 100%; justify-content: center; }
}

/* ============================================================
   CLARIFY DIALOG
   ============================================================ */
.clarify-dialog {
    max-width: 520px;
    margin: 60px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 24px;
    padding: 40px 36px;
    text-align: center;
    animation: card-in 0.4s ease both;
    box-shadow: 0 24px 64px rgba(255,123,74,0.1);
}

.clarify-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.clarify-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.4;
}

.clarify-input-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.clarify-input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.clarify-input:focus {
    border-color: var(--border-accent);
}

.clarify-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

.clarify-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.clarify-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.clarify-chip {
    padding: 7px 16px;
    background: rgba(255,123,74,0.08);
    border: 1px solid rgba(255,123,74,0.25);
    border-radius: 20px;
    color: var(--accent);
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.clarify-chip:hover {
    background: rgba(255,123,74,0.18);
    border-color: var(--accent);
}

/* ============================================================
   RESULTS COUNT
   ============================================================ */
.results-count {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
    padding-left: 2px;
}

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-dim);
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.no-results-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.no-results-sub {
    font-size: 14px;
}

