/* 玫红色+白色 浪漫水果风格 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #4a4a4a;
  background: #fff;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #ff6b9d 0%, #c94b7a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.95;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: #fff;
  color: #c94b7a;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,75,122,0.3);
}

/* Features */
.features {
  padding: 60px 20px;
  background: #fff0f4;
}

.features h2,
.products h2,
.contact h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #c94b7a;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(201,75,122,0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature h3 {
  color: #c94b7a;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature p {
  font-size: 0.95rem;
  color: #666;
}

/* Products */
.products {
  padding: 60px 20px;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  text-align: center;
}

.product-img {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.product-card h3 {
  color: #c94b7a;
  margin-bottom: 8px;
}

.product-card p {
  color: #777;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 60px 20px;
  background: #fff0f4;
  text-align: center;
}

.contact p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #c94b7a;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 60px 20px;
    min-height: 40vh;
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}