/* 费度 FeiDu — 羊绒服饰溯源 PC 主题 */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background: #F7F3EA;
  color: #333;
}
a { text-decoration: none; color: #C8A67E; }
.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* 顶部导航 */
.header {
  background: rgba(255, 253, 249, 0.95);
  border-bottom: 1px solid #ECE5D8;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.hd {
  width: 86%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
  font-size: 26px;
  font-weight: 600;
  color: #5A4A3A;
  letter-spacing: 2px;
}
.logo-text small {
  display: block;
  font-size: 11px;
  color: #C8A67E;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links a {
  margin-left: 24px;
  font-size: 14px;
  color: #5A4A3A;
  transition: color 0.2s;
}
.nav-links a:hover { color: #C8A67E; }
.nav-links a i { margin-right: 4px; }

/* 主视觉区 */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #FFFDF9 0%, #F7F3EA 60%);
}
.brand-title {
  font-size: 48px;
  font-weight: 300;
  color: #5A4A3A;
  letter-spacing: 6px;
  margin-bottom: 10px;
}
.brand-title span { color: #C8A67E; font-weight: 500; }
.slogan {
  font-size: 18px;
  color: #8C7B67;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

/* 查询框 */
.search-card {
  background: #fff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(90, 74, 58, 0.08);
  width: 100%;
  max-width: 640px;
}
.search-box {
  display: flex;
  border: 1px solid #ECE5D8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}
.search-box input {
  flex: 1;
  border: none;
  padding: 16px 18px;
  font-size: 16px;
  outline: none;
  color: #5A4A3A;
}
.search-box input::placeholder { color: #B8A890; }
.search-box button {
  background: #C8A67E;
  border: none;
  color: #fff;
  padding: 0 32px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-box button:hover { background: #B08A5F; }

.yzm-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.yzm-box input {
  width: 140px;
  border: 1px solid #ECE5D8;
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
  outline: none;
}
.yzm-box img {
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #ECE5D8;
}

.notices {
  font-size: 13px;
  color: #8C7B67;
  line-height: 1.6;
}

/* 产品展示 */
.products {
  width: 86%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.section-title {
  font-size: 22px;
  color: #5A4A3A;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 400;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(90, 74, 58, 0.06);
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.product-info { padding: 18px 20px; }
.product-info h3 { font-size: 17px; color: #5A4A3A; margin-bottom: 6px; font-weight: 500; }
.product-info p { font-size: 13px; color: #8C7B67; line-height: 1.5; }

/* 页脚 */
.footer {
  background: #FFFDF9;
  border-top: 1px solid #ECE5D8;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #8C7B67;
}
.footer p { margin: 4px 0; }
