/* ========== 禾匠商城页面样式 ========== */
.shop-header {
  background: linear-gradient(to right, #165DFF, #0088ff);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
}
.shop-header h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
.shop-header p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
}
.shop-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 优势卡片 */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.shop-card {
  background: #f8fafc;
  padding: 36px 24px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}
.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.shop-card i {
  font-size: 38px;
  color: #165DFF;
  margin-bottom: 20px;
}
.shop-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.shop-card p {
  color: #64748b;
  line-height: 1.6;
}

/* 功能列表 */
.features-list {
  max-width: 900px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.feature-item i {
  color: #165DFF;
  font-size: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.feature-item p {
  color: #94a3b8;
  line-height: 1.6;
}

/* 适用行业 */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.ind-item {
  background: #f1f5f9;
  padding: 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}
.ind-item:hover {
  background: #165DFF;
  color: #fff;
}

/* 底部咨询 */
.contact-box-center {
  text-align: center;
  background: #fff;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-box-center h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
.contact-box-center p {
  color: #64748b;
  margin-bottom: 30px;
}
.btn-lg {
  padding: 14px 36px;
  font-size: 17px;
}

/* 响应式 */
@media (max-width:992px) {
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:576px) {
  .shop-grid, .industry-grid { grid-template-columns: 1fr; }
  .shop-header h1 { font-size: 32px; }
}