/* Verified seller, timeline, search suggest, stats, fade, FAQ */
.seller-verified-badge { color: var(--accent); margin-left: 4px; }
.seller-response-time { display: block; font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.search-suggest {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 200;
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.search-suggest-item {
    display: block; padding: 10px 14px; font-size: 13px; color: var(--text);
    border-bottom: 1px solid var(--border);
}
.search-suggest-item:hover { background: rgba(255,255,255,.04); color: var(--text-warm); }
.search-suggest-item:last-child { border-bottom: none; }

.site-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin: 24px 0; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}
@media (max-width: 640px) { .site-stats { grid-template-columns: 1fr; } }
.stat-box { text-align: center; }
.stat-box strong {
    display: block; font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800; color: var(--gold);
}
.stat-box span { font-size: 13px; color: var(--text-muted); }

.order-timeline {
    display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none;
}
.order-timeline li {
    flex: 1; min-width: 120px; padding: 10px 12px; border-radius: var(--radius);
    background: var(--bg-input); border: 1px solid var(--border);
    font-size: 11px; color: var(--text-muted); position: relative;
}
.order-timeline li.is-done { border-color: rgba(0,212,170,.35); color: var(--text); }
.order-timeline li.is-current { border-color: rgba(251,146,60,.5); box-shadow: 0 0 12px rgba(251,146,60,.12); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 10px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; padding: 16px 18px;
    background: var(--bg-card); border: none; color: var(--text);
    font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-question::after { content: '+'; color: var(--text-warm); font-size: 18px; }
.faq-item.is-open .faq-question::after { content: '−'; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
    padding: 0 18px; color: var(--text-muted); font-size: 14px; line-height: 1.65;
}
.faq-item.is-open .faq-answer { max-height: 400px; padding: 0 18px 16px; }

.category-landing-hero {
    padding: 32px 0 16px; text-align: center;
}
.category-landing-hero h1 { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: 10px; }
.category-landing-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, border-color .2s;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--border-light); }
.blog-card-body { padding: 16px 18px 20px; }
.blog-card h2 { font-size: 1rem; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); }

.referral-box, .alert-form-box {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 16px;
}
.referral-link-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.referral-link-row input { flex: 1; min-width: 200px; }
