/* ====================================
   鲜花批发导航 - 主样式
   ==================================== */

/* 基础重置与变量 */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --primary-light: #ff6b6b;
    --secondary: #2ecc71;
    --secondary-dark: #27ae60;
    --accent: #f39c12;
    --accent-dark: #e67e22;
    --bg: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #333333;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-sm: 4px;
    --font: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    --font-size: 14px;
    --font-size-sm: 12px;
    --font-size-lg: 16px;
    --font-size-xl: 20px;
    --font-size-huge: 28px;
    --gap: 12px;
    --gap-lg: 20px;
    --gap-sm: 8px;
    --header-height: 50px;
    --bottom-nav-height: 56px;
    --container-max: 768px;
}

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

body {
    font-family: var(--font);
    font-size: var(--font-size);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--gap);
}

/* === 顶部导航 === */
.site-header {
    background: var(--bg-white);
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: var(--gap-sm);
}

/* === 按钮 === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: var(--radius);
    font-size: var(--font-size);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-sm { padding: 4px 12px; font-size: var(--font-size-sm); }
.btn-lg { padding: 10px 24px; font-size: var(--font-size-lg); }
.btn-block { width: 100%; }

.btn-danger {
    background: #e74c3c;
    color: white;
}

.btn-success {
    background: var(--secondary);
    color: white;
}

/* === 主内容区 === */
.site-main {
    padding-bottom: var(--bottom-nav-height);
    min-height: calc(100vh - var(--header-height));
}

/* === 搜索栏 === */
.search-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px var(--gap) 30px;
    margin-bottom: var(--gap);
}

.search-box {
    max-width: var(--container-max);
    margin: 0 auto;
}

.search-title {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: 12px;
    text-align: center;
}

.search-form {
    display: flex;
    gap: var(--gap-sm);
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    outline: none;
    background: white;
}

.search-btn {
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    cursor: pointer;
}

.search-tags {
    margin-top: 10px;
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
}

.search-tag {
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: var(--font-size-sm);
}

/* === 分类板块 === */
.category-section {
    background: var(--bg-white);
    margin-bottom: var(--gap);
    padding: var(--gap-lg) var(--gap);
    border-radius: var(--radius);
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--gap);
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}

.section-title .icon {
    font-size: 24px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.category-item {
    text-align: center;
    padding: var(--gap) var(--gap-sm);
    border-radius: var(--radius);
    background: var(--bg);
    transition: transform 0.2s;
}

.category-item:hover {
    transform: translateY(-2px);
}

.category-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-icon img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.category-name {
    font-size: var(--font-size-sm);
    color: var(--text);
}

/* 首页分类导航 - 简洁模式 */
.home-nav-category {
    background: var(--bg-white);
    margin-bottom: var(--gap);
    padding: var(--gap-lg) var(--gap);
    border-radius: var(--radius);
}

.home-nav-category .section-title {
    margin-bottom: var(--gap);
}

.home-nav-category .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.home-nav-category .category-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fb);
    padding: var(--gap) var(--gap-sm);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.home-nav-category .category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 129, 0.15);
}

.home-nav-category .category-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    font-size: 26px;
    background: linear-gradient(135deg, #fff0f3, #ffe6eb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-nav-category .category-icon img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.home-nav-category .category-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

/* === 省区入口 === */
.province-section {
    background: var(--bg-white);
    margin-bottom: var(--gap);
    padding: var(--gap-lg) var(--gap);
    border-radius: var(--radius);
}

.province-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap-sm);
}

.province-item {
    text-align: center;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    font-size: var(--font-size-sm);
    color: var(--text);
    transition: background 0.2s;
}

.province-item:hover {
    background: var(--primary-light);
    color: white;
}

/* === 批发商推荐 === */
.wholesaler-section {
    background: var(--bg-white);
    margin-bottom: var(--gap);
    padding: var(--gap-lg) var(--gap);
    border-radius: var(--radius);
}

.wholesaler-card {
    display: flex;
    gap: var(--gap);
    padding: var(--gap);
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.wholesaler-card:last-child {
    border-bottom: none;
}

.wholesaler-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.wholesaler-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wholesaler-info {
    flex: 1;
}

.wholesaler-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text);
}

.wholesaler-type {
    font-size: var(--font-size-sm);
    color: var(--primary);
    margin-top: 2px;
}

.wholesaler-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 4px;
}

.wholesaler-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    margin-left: 6px;
}

.wholesaler-badge.top {
    background: var(--accent);
}

/* === 推荐商铺 === */
.shop-recommend-section {
    background: var(--bg-white);
    margin-bottom: var(--gap);
    padding: var(--gap-lg) var(--gap);
    border-radius: var(--radius);
}

.shop-card {
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: var(--gap);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.shop-card-cover {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.shop-card-body {
    padding: var(--gap);
}

.shop-card-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 4px;
}

.shop-card-address {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: 4px;
}

.shop-card-phone {
    font-size: var(--font-size-sm);
    color: var(--primary);
}

.shop-card-tags {
    display: flex;
    gap: var(--gap-sm);
    margin-top: 6px;
}

.shop-card-tag {
    padding: 2px 8px;
    background: var(--primary-light);
    color: white;
    border-radius: 4px;
    font-size: 11px;
}

/* === 投诉入口 === */
.complaint-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    margin: var(--gap) 0;
    padding: 18px var(--gap);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: var(--shadow);
}

.complaint-banner h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 4px;
    font-weight: 700;
}

.complaint-banner p {
    font-size: var(--font-size-sm);
    margin-bottom: 12px;
    opacity: 0.95;
}

.complaint-banner .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 22px;
}

/* === 底部导航 === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.nav-item {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    padding: 4px 0;
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary);
}

.nav-icon {
    font-size: 20px;
    display: block;
}

.nav-text {
    display: block;
    margin-top: 2px;
}

/* === Flash消息 === */
.flash-message {
    padding: 12px 20px;
    text-align: center;
    animation: fadeIn 0.3s;
    margin: 10px auto;
    max-width: var(--container-max);
    border-radius: var(--radius);
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === 表单 === */
.form-group {
    margin-bottom: var(--gap);
}

.form-label {
    display: block;
    font-size: var(--font-size);
    font-weight: 600;
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-size);
    outline: none;
    transition: border-color 0.2s;
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-hint {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    color: var(--primary);
    font-size: var(--font-size-sm);
    margin-top: 4px;
}

.form-radio-group {
    display: flex;
    gap: var(--gap);
    margin-top: 6px;
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px var(--gap);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
}

.form-radio.selected {
    border-color: var(--primary);
    background: rgba(231,76,60,0.1);
}

.form-radio input {
    accent-color: var(--primary);
}

/* === 页面 === */
.page-header {
    padding: var(--gap-lg) var(--gap);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--gap);
}

.page-header h1 {
    font-size: var(--font-size-xl);
}

/* === 文章列表 === */
.article-list {
    background: var(--bg-white);
    border-radius: var(--radius);
}

.article-item {
    padding: var(--gap);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: var(--gap);
}

.article-item:last-child {
    border-bottom: none;
}

.article-item-top {
    background: rgba(243,156,18,0.1);
    border-left: 3px solid var(--accent);
}

.article-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    flex: 1;
}

.article-title {
    font-size: var(--font-size);
    font-weight: 600;
    margin-bottom: 4px;
}

.article-title .top-badge {
    color: var(--accent);
    font-size: var(--font-size-sm);
}

.article-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.article-recommend {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--accent);
    font-size: var(--font-size-sm);
}

/* === 评论 === */
.comment-list {
    margin-top: var(--gap);
}

.comment-item {
    padding: var(--gap) 0;
    border-bottom: 1px solid var(--border);
}

.comment-user {
    font-weight: 600;
    margin-bottom: 4px;
}

.comment-content {
    font-size: var(--font-size);
}

.comment-time {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.comment-form {
    background: var(--bg-white);
    padding: var(--gap);
    border-radius: var(--radius);
    margin-top: var(--gap);
}

/* === 投诉列表 === */
.complaint-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: var(--gap);
    margin-bottom: var(--gap);
    border-left: 3px solid var(--primary);
}

.complaint-item-top {
    border-left-color: var(--accent);
}

.complaint-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 6px;
}

.complaint-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.complaint-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    margin-top: var(--gap-sm);
}

.complaint-images img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg);
}

/* === 新版投诉列表卡片 === */
.complaint-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    padding: 0 var(--gap) var(--gap);
}

.complaint-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--gap) var(--gap);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    margin: 0 calc(-1 * var(--gap)) var(--gap);
}

.complaint-page-header h1 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complaint-page-header .btn-publish {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow);
}

.complaint-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--gap);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.complaint-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.complaint-card-top {
    border-left-color: var(--accent);
    background: linear-gradient(90deg, rgba(243,156,18,0.06), var(--bg-white));
}

.complaint-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--gap-sm);
    margin-bottom: 8px;
}

.complaint-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
    flex: 1;
}

.complaint-card-top .complaint-card-title {
    color: var(--primary-dark);
}

.complaint-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

.complaint-card-reason {
    display: inline-block;
    background: rgba(231,76,60,0.1);
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.complaint-card-summary {
    color: var(--text-light);
    font-size: var(--font-size);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.complaint-card-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    margin-bottom: 10px;
}

.complaint-card-images img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg);
}

.complaint-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.complaint-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.complaint-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.complaint-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.complaint-card-nickname {
    color: var(--text);
    font-weight: 600;
}

.complaint-card-time {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.complaint-card-arrow {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.complaint-card:hover .complaint-card-arrow {
    color: var(--primary);
    transform: translateX(2px);
    transition: transform 0.2s, color 0.2s;
}

.empty-state {
    text-align: center;
    padding: 40px var(--gap);
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.empty-state h3 {
    font-size: var(--font-size-lg);
    color: var(--text);
    margin-bottom: 6px;
}


/* === 店铺详情 === */
.shop-detail {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shop-detail-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shop-detail-header {
    padding: var(--gap-lg) var(--gap);
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.shop-detail-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

.shop-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-detail-info h2 {
    font-size: var(--font-size-xl);
}

.shop-detail-type {
    color: var(--primary);
    font-size: var(--font-size-sm);
}

.shop-detail-body {
    padding: var(--gap);
}

.shop-detail-desc {
    margin-bottom: var(--gap);
}

.shop-detail-meta {
    display: flex;
    gap: var(--gap-lg);
    margin-bottom: var(--gap);
}

.shop-detail-meta-item {
    font-size: var(--font-size-sm);
}

.shop-detail-meta-item span {
    color: var(--text-muted);
}

/* === 商品列表 === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-body {
    padding: var(--gap-sm) var(--gap);
}

.product-name {
    font-size: var(--font-size);
    font-weight: 600;
}

.product-price {
    font-size: var(--font-size-lg);
    color: var(--primary);
    font-weight: 700;
}

.product-quantity {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.product-actions {
    padding: var(--gap-sm) var(--gap);
}

/* === 订单 === */
.order-form {
    background: var(--bg-white);
    padding: var(--gap-lg);
    border-radius: var(--radius-lg);
}

.order-item {
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding: var(--gap) 0;
    border-bottom: 1px solid var(--border);
}

.order-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-item-qty input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
}

/* === 分页 === */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--gap-sm);
    padding: var(--gap-lg) 0;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
}

.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* === 工具 === */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: var(--gap); }
.mt-2 { margin-top: var(--gap-lg); }
.mb-1 { margin-bottom: var(--gap); }
.mb-2 { margin-bottom: var(--gap-lg); }
.hidden { display: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === 图片上传预览 === */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.upload-area:hover {
    border-color: var(--primary);
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-sm);
    margin-top: var(--gap);
}

.upload-preview img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* === 搜索结果 === */
.search-result-item {
    background: var(--bg-white);
    padding: var(--gap);
    border-radius: var(--radius);
    margin-bottom: var(--gap);
}

.search-result-item h4 {
    font-weight: 600;
}

.search-result-item .meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}
