/* mall.css - 自营商城页面专用样式 */
.mall-main {
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 80px; /* 防止底部导航栏遮挡内容 */
}

/* 确保所有列表项都正确继承样式 */
.mall-sidebar-list li * {
    pointer-events: none;
}
/* 新商城页面两栏布局 */
.mall-layout-row {
  display: flex;
  gap: 0;
}
.mall-sidebar {
  width: 60px;
  min-width: 60px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 10px 0 0;
  align-self: flex-start;
  height: 100%;
  border-right: 1px solid #f0f0f0;
}
.mall-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mall-sidebar-list li {
  color: #E53935;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  padding: 12px 0 12px 0;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 确保默认状态的样式 */
.mall-sidebar-list li:not(.active) {
  color: #E53935;
  background: none;
}
.mall-sidebar-list li:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: #f5f5f5;
}
.mall-sidebar-list li.active,
.mall-sidebar li.active,
li[data-category-id].active {
  color: #fff !important;
  background: #E53935 !important;
  font-weight: 500 !important;
}
.mall-sidebar-list li:hover:not(.active) {
  background: #fafafa;
}
.mall-goods-col {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-left: 0;
}
.mall-goods-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mall-goods-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.mall-goods-info {
    padding: 12px;
}
.mall-goods-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    height: 44px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
.mall-goods-price {
    color: #E53935;
    font-size: 16px;
    font-weight: bold;
}

.mall-goods-original-price {
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 8px;
}

/* 加载状态和错误状态样式 */
.loading, .error, .no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.loading {
    color: #E53935;
}

.error {
    color: #f44336;
}

.no-products {
    color: #999;
}

.mall-goods-sales {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
} 