/* marketplace/store.html */
.store-page { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.store-banner { width: 100%; height: 200px; border-radius: 12px; background: linear-gradient(135deg, #3b82f6 0%, #0891B2 50%, #8b5cf6 100%); margin-bottom: -60px; position: relative; overflow: hidden; }
.store-banner img { width: 100%; height: 100%; object-fit: cover; }
.store-info-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; margin-bottom: 24px; position: relative; z-index: 1; display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.store-logo { width: 80px; height: 80px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: #fff; flex-shrink: 0; border: 3px solid var(--bg-card); overflow: hidden; }
.store-logo img { width: 100%; height: 100%; object-fit: cover; }
.store-meta { flex: 1; min-width: 200px; }
.store-meta h1 { font-size: 1.5rem; font-weight: 700; margin: 0 0 4px; color: var(--text-primary); }
.store-meta .tagline { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 8px; }
.store-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.store-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-verified { background: rgba(34,197,94,0.12); color: #22c55e; }
.badge-tier { background: var(--accent-soft); color: var(--accent); }
.store-stats { display: flex; gap: 20px; font-size: 0.82rem; color: var(--text-muted); }
.store-stats span { display: flex; align-items: center; gap: 4px; }
.star { color: #f59e0b; }
.store-location { font-size: 0.8rem; color: var(--text-muted); }
.store-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.store-tabs a { padding: 8px 18px; border-radius: 8px; font-size: 0.84rem; font-weight: 500; color: var(--text-secondary); background: var(--bg-elevated); text-decoration: none; transition: all 0.15s; }
.store-tabs a.active, .store-tabs a:hover { background: var(--accent); color: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 24px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; overflow: hidden; transition: border-color 0.15s; }
.product-card:hover { border-color: var(--accent); }
.product-img { width: 100%; height: 180px; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.8rem; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 14px; }
.product-info h3 { font-size: 0.88rem; font-weight: 600; margin: 0 0 6px; color: var(--text-primary); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-info h3 a { color: inherit; text-decoration: none; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.product-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.condition-badge { padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.cond-a { background: rgba(34,197,94,0.12); color: #22c55e; }
.cond-b { background: rgba(59,130,246,0.12); color: #3b82f6; }
.cond-c { background: rgba(245,158,11,0.12); color: #f59e0b; }
.cond-d { background: rgba(239,68,68,0.12); color: #ef4444; }
.warranty-badge { padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; background: rgba(34,197,94,0.08); color: var(--green); }
.product-actions { display: flex; gap: 8px; }
.btn-view { flex: 1; padding: 7px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 500; text-decoration: none; text-align: center; background: var(--accent); color: #fff; border: none; cursor: pointer; }
.btn-cart { padding: 7px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 500; background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-color); cursor: pointer; }
.about-section, .policies-section, .reviews-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; padding: 24px; margin-bottom: 18px; }
.about-section h2, .policies-section h2, .reviews-section h2 { font-size: 1.1rem; font-weight: 600; margin: 0 0 14px; }
.policy-item { margin-bottom: 16px; }
.policy-item h3 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin: 0 0 6px; }
.policy-item p { font-size: 0.84rem; color: var(--text-secondary); white-space: pre-wrap; line-height: 1.6; }
.review-card { padding: 14px 0; border-bottom: 1px solid var(--border-color); }
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.review-name { font-weight: 600; font-size: 0.85rem; }
.review-date { font-size: 0.75rem; color: var(--text-muted); margin-left: auto; }
.review-stars { color: #f59e0b; font-size: 0.85rem; }
.review-comment { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; }
.seller-response { margin-top: 8px; padding: 10px; background: var(--bg-elevated); border-radius: 6px; font-size: 0.82rem; color: var(--text-secondary); }
.seller-response strong { color: var(--text-primary); }
.cat-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.cat-pill { padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; background: var(--bg-elevated); color: var(--text-secondary); text-decoration: none; border: 1px solid var(--border-color); transition: all 0.15s; }
.cat-pill.active, .cat-pill:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination-bar { display: flex; justify-content: center; gap: 8px; margin: 24px 0; }
.pagination-bar a, .pagination-bar span { padding: 6px 14px; border-radius: 6px; font-size: 0.82rem; text-decoration: none; background: var(--bg-elevated); color: var(--text-secondary); }
.pagination-bar a:hover { background: var(--accent); color: #fff; }
.pagination-bar .current { background: var(--accent); color: #fff; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state svg { margin-bottom: 12px; opacity: 0.4; }
/* ── vsw-store-card: AI-generated SEO About card on store About tab ── */
.vsw-store-card {
    margin-top: 20px;
    background: var(--bg-elevated, #f9fafb);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 16px 18px;
}
.vsw-store-card-heading {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vsw-store-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .store-info-card { flex-direction: column; align-items: center; text-align: center; }
    .store-stats { justify-content: center; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }