/* ===== 商品中心 ===== */
.product-grid .product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.product-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-grid .product-thumb {
  height: 200px;
  object-fit: cover;
  background: #fafafa;
}
.product-grid .product-title {
  font-size: 15px;
  font-weight: 600;
}
.product-grid .product-desc {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
}
.product-grid .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #f5222d;
}
.product-grid .product-original {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
  margin-left: 6px;
}
.pagination-bar {
  text-align: center;
  margin-top: 28px;
}

/* ===== 购物车 ===== */
.cart-page .cart-card {
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.cart-page .cart-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.cart-page .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page .cart-product {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-page .cart-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-page .cart-total {
  font-size: 20px;
  font-weight: 700;
  color: #f5222d;
  text-align: right;
}

/* ===== 客户管理 ===== */
.user-page .user-table .user-avatar {
  border: 2px solid #f0f0f0;
}
.user-page .user-table .user-name {
  font-weight: 600;
  font-size: 14px;
}
.user-page .user-table .user-username {
  color: #999;
  font-size: 12px;
}

/* ===== 关于商城 ===== */
.shop-about {
  padding: 20px 40px;
}
.shop-about .about-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-radius: 12px;
}
.shop-about .info-section {
  text-align: left;
  margin-top: 20px;
}

