/* 自定义样式 */
:root {
  --md-primary-fg-color: #1565C0;
  --md-primary-fg-color--light: #1E88E5;
  --md-primary-fg-color--dark: #0D47A1;
}

/* 首页 Hero 区域 */
.hero {
  padding: 2rem 0;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--md-default-fg-color--light);
  margin-bottom: 2rem;
}

/* 产品卡片网格 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.product-card {
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.product-card h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1rem;
}

.product-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--md-default-fg-color--light);
}
