/* 全能超市页面样式 */
.market-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 15px;
}

.market-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.market-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* 分类图标区域 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 15px;
    background: #fff;
    gap: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.category-icon i {
    font-size: 22px;
    color: #6366f1;
}

.category-name {
    font-size: 12px;
    color: #333;
}

/* 福利夜活动区 */
.promo-section {
    margin: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.promo-banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

/* 商品列表 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.product-price {
    color: #ff4d4f;
    font-size: 16px;
    font-weight: bold;
}

.product-price small {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.add-to-cart {
    background: #6366f1;
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

/* 配送信息 */
.delivery-info {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.delivery-info i {
    margin-right: 5px;
    color: #6366f1;
}

/* 标签样式 */
.market-tag {
    background: #f0f2ff;
    color: #6366f1;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 6px;
}

/* 加载更多 */
.load-more {
    text-align: center;
    padding: 15px;
    color: #666;
    font-size: 14px;
}
