/* ===========================================================================
 * V9-APP 集市页面重构样式 · 盒马风格左右布局
 * =========================================================================== */

/* 页面容器 */
.v9-market-wrap { max-width: 768px; margin: 0 auto; min-height: 100vh; background: var(--v9-bg-market); }

/* 顶栏 */
.v9-topbar { background: linear-gradient(135deg, #FF2442 0%, #FF6B81 60%, #FFA940 100%); padding: calc(env(safe-area-inset-top, 0) + 8px) 0 0; }
.v9-topbar-inner { display: flex; align-items: center; padding: 8px 16px; gap: 12px; }
.v9-back { color: rgba(255,255,255,0.9); font-size: 22px; text-decoration: none; padding: 4px; }
.v9-brand { flex: 1; display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 800; color: #fff; }
.v9-brand i { font-size: 20px; }
.v9-cart-btn { position: relative; color: #fff; font-size: 24px; text-decoration: none; padding: 4px; }
.v9-cart-count { position: absolute; top: -4px; right: -8px; background: #fff; color: #FF2442; font-size: 10px; font-weight: 700; padding: 1px 5px; border-radius: 10px; min-width: 16px; text-align: center; }

/* 搜索栏 */
.v9-search { margin: 8px 12px; background: #fff; border-radius: 22px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.v9-search i { color: var(--gray-400); font-size: 18px; }
.v9-search input { flex: 1; border: 0; outline: 0; font-size: 14px; background: transparent; font-family: inherit; color: var(--gray-900); }
.v9-search button { background: linear-gradient(135deg, #FF2442, #FF6B81); color: #fff; border: 0; border-radius: 16px; padding: 6px 16px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* 主体布局：左侧分类 + 右侧信息流 */
.v9-market-main { display: flex; min-height: calc(100vh - 140px); }
.v9-sidebar { width: 80px; flex-shrink: 0; background: #fff; border-right: 1px solid var(--border-line); overflow-y: auto; }
.v9-sidebar-header { padding: 12px 0; text-align: center; border-bottom: 1px solid var(--border-line); color: var(--gray-500); }
.v9-sidebar-header i { font-size: 20px; display: block; margin-bottom: 4px; }
.v9-sidebar-header span { font-size: 11px; }
.v9-sidebar-list { padding: 4px 0; }
.v9-sidebar-item { display: flex; flex-direction: column; align-items: center; padding: 10px 4px; cursor: pointer; transition: background 150ms; }
.v9-sidebar-item:active { background: var(--gray-50); }
.v9-sidebar-item.active { background: #FFF6F7; }
.v9-sidebar-emoji { font-size: 20px; margin-bottom: 2px; }
.v9-sidebar-name { font-size: 10px; color: var(--gray-600); text-align: center; line-height: 1.3; }
.v9-sidebar-item.active .v9-sidebar-name { color: #FF2442; font-weight: 600; }

/* 右侧内容 */
.v9-content { flex: 1; overflow-y: auto; padding: 12px; }

/* 通用区块 */
.v9-section { margin-bottom: 16px; }
.v9-sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.v9-sec-head h3 { margin: 0; font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.v9-sec-head h3 i { font-size: 18px; color: #FF2442; }
.v9-more { font-size: 12px; color: var(--gray-400); }
.v9-tag { font-size: 10px; color: #fff; background: #FF2442; padding: 2px 8px; border-radius: 10px; margin-left: 6px; }

/* 金刚区 */
.v9-kk-section { margin-bottom: 16px; }
.v9-kk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; background: #fff; border-radius: var(--v9-card-radius); padding: 12px 8px; box-shadow: var(--v9-card-shadow); }
.v9-kk-item { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; padding: 4px 0; }
.v9-kk-icon { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 2px 6px rgba(0,0,0,0.10); background: #f5f5f5; }
.v9-kk-icon img { width: 100%; height: 100%; object-fit: cover; }
.v9-kk-name { font-size: 11px; color: var(--gray-700); text-align: center; line-height: 1.3; }

/* 限时秒杀 */
.v9-flash-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.v9-flash-scroll::-webkit-scrollbar { display: none; }
.v9-flash-item { flex: 0 0 88px; cursor: pointer; }
.v9-flash-img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; background: #f0f1f5; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.v9-flash-name { font-size: 11px; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--gray-700); }
.v9-flash-price { font-size: 13px; color: #FF2442; font-weight: 700; }

/* 六大专区 */
.v9-zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.v9-zone-card { background: #fff; border-radius: 14px; padding: 14px; box-shadow: var(--v9-card-shadow); cursor: pointer; display: flex; align-items: center; gap: 10px; }
.v9-zone-emoji { font-size: 28px; }
.v9-zone-info h4 { margin: 0 0 2px; font-size: 14px; font-weight: 600; }
.v9-zone-info p { margin: 0; font-size: 11px; color: var(--gray-400); }

/* 内测声明 */
.v9-notice-beta { background: linear-gradient(135deg, #FFF8E1, #FFF3E0); border: 1px solid #FFE0B2; border-radius: 12px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.v9-notice-beta i { color: #F59E0B; font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.v9-notice-body p { margin: 0; font-size: 11px; color: #92400E; line-height: 1.6; }

/* 猜你喜欢 */
.v9-guess-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.v9-g-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--v9-card-shadow); cursor: pointer; }
.v9-g-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #f0f1f5; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.v9-g-body { padding: 8px 10px 10px; }
.v9-g-name { font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.v9-g-nutri { margin-top: 4px; font-size: 10px; color: #FF2442; background: #FFF6F7; border-radius: 8px; padding: 2px 6px; display: inline-block; }
.v9-g-diets { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 3px; }
.v9-diet { font-size: 9px; border-radius: 7px; padding: 2px 5px; line-height: 1.4; }
.v9-diet-warn { background: #FFF3E8; color: #E8830C; }
.v9-diet-good { background: #EAF8F0; color: #1A9B5B; }
.v9-g-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.v9-g-price { color: #FF2442; font-weight: 700; font-size: 14px; }
.v9-g-cart { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#FF2442,#FF6B81); color:#fff; border: 0; font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* 响应式 */
@media (max-width: 375px) {
    .v9-sidebar { width: 72px; }
    .v9-sidebar-name { font-size: 9px; }
    .v9-kk-grid { grid-template-columns: repeat(4, 1fr); }
    .v9-guess-grid { grid-template-columns: 1fr; }
}
