/* 大理乳扇 - 奶白色+绿色主题 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Microsoft YaHei', sans-serif; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.hero-cream { background: linear-gradient(135deg, #fffff0 0%, #f5f5dc 50%, #228b22 100%); min-height: 100vh; display: flex; flex-direction: column; }
.hero-cream nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(34,139,34,0.1); }
.logo { font-size: 1.5rem; font-weight: bold; color: #228b22; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #228b22; font-weight: 500; }
.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
.hero-content h1 { font-size: 3rem; color: #228b22; margin-bottom: 20px; }
.hero-content p { font-size: 1.3rem; color: #2d6a2d; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 40px; background: #228b22; color: #fff; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #006400; }
.btn-green { background: #32cd32; }

/* Story */
.story { padding: 80px 0; background: #fff; }
.story h2 { text-align: center; font-size: 2.2rem; color: #228b22; margin-bottom: 30px; }
.story-content { max-width: 800px; margin: 0 auto; }
.story-content p { color: #555; font-size: 1.1rem; text-align: center; }

/* Products Cream */
.products-cream { padding: 80px 0; background: #fafaf0; }
.products-cream h2 { text-align: center; font-size: 2.2rem; color: #228b22; margin-bottom: 50px; }
.product-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.list-item { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 25px 30px; border-radius: 16px; border: 2px solid #f5f5dc; transition: 0.3s; }
.list-item:hover { border-color: #228b22; transform: translateX(10px); }
.item-info h3 { color: #228b22; margin-bottom: 5px; }
.item-info p { color: #888; font-size: 0.95rem; }
.item-price { font-size: 1.3rem; color: #228b22; font-weight: bold; white-space: nowrap; }

/* Features Cream */
.features-cream { padding: 80px 0; background: #fff; }
.features-cream h2 { text-align: center; font-size: 2.2rem; color: #228b22; margin-bottom: 50px; }
.feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.feature-box { background: linear-gradient(135deg, #f0fff0, #e8f5e8); padding: 35px 25px; border-radius: 16px; text-align: center; border: 2px solid #32cd32; }
.feature-box h4 { color: #228b22; margin-bottom: 10px; font-size: 1.2rem; }
.feature-box p { color: #555; }

/* Footer */
.footer-cream { background: linear-gradient(135deg, #228b22, #006400); color: #f5f5dc; text-align: center; padding: 30px 0; }
.footer-cream p { margin: 0; }

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .hero-cream nav { flex-direction: column; gap: 15px; }
  .list-item { flex-direction: column; align-items: flex-start; gap: 10px; }
}