/*斗南花卉 - 粉色+绿色主题 */
* { 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 { background: linear-gradient(135deg, #ffb6c1 0%, #90ee90 100%); min-height: 100vh; display: flex; flex-direction: column; }
.hero nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(255,255,255,0.2); }
.logo { font-size: 1.5rem; font-weight: bold; color: #155724; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #155724; 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: #155724; margin-bottom: 20px; }
.hero-content p { font-size: 1.3rem; color: #2d6a2d; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 40px; background: #155724; color: #fff; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #90ee90; color: #155724; }

/* Features */
.features { padding: 80px 0; background: #fff; }
.features h2 { text-align: center; font-size: 2.2rem; color: #155724; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: linear-gradient(135deg, #f8fff8, #e8f5e8); padding: 40px 30px; border-radius: 16px; text-align: center; border: 2px solid #90ee90; }
.feature-card .icon { font-size: 3rem; margin-bottom: 20px; }
.feature-card h3 { color: #155724; margin-bottom: 10px; font-size: 1.3rem; }
.feature-card p { color: #555; }

/* Products */
.products { padding: 80px 0; background: #f0fff0; }
.products h2 { text-align: center; font-size: 2.2rem; color: #155724; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.product-card { background: #fff; padding: 30px; border-radius: 16px; text-align: center; position: relative; border: 2px solid #ffb6c1; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(144,238,144,0.3); }
.product-card .badge { position: absolute; top: 15px; right: 15px; background: #ff69b4; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; }
.product-card h3 { color: #155724; margin-bottom: 10px; }
.product-card .price { font-size: 1.4rem; color: #e91e63; font-weight: bold; margin: 10px 0; }
.product-card p { color: #777; font-size: 0.95rem; }

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

/* Footer */
footer { background: linear-gradient(135deg, #155724, #2d6a2d); color: #fff; text-align: center; padding: 30px 0; }
footer p { margin: 0; }

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