/* 蒙自石榴 - 玫红+金色主题 */
* { 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-pink { background: linear-gradient(135deg, #c2185b 0%, #e91e63 40%, #d4af37 100%); min-height: 100vh; display: flex; flex-direction: column; }
.nav-luxury { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(0,0,0,0.2); backdrop-filter: blur(10px); }
.logo { font-size: 1.5rem; font-weight: bold; color: #d4af37; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #fce4ec; 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: #fff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-content p { font-size: 1.3rem; color: #fce4ec; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 40px; background: #d4af37; color: #1a0033; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #fff; }
.btn-gold { background: linear-gradient(135deg, #d4af37, #f0d060); box-shadow: 0 4px 20px rgba(212,175,55,0.4); }

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

/* Varieties */
.varieties { padding: 80px 0; background: #fce4ec; }
.varieties h2 { text-align: center; font-size: 2.2rem; color: #c2185b; margin-bottom: 50px; }
.variety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.variety-card { background: linear-gradient(135deg, #fff, #fce4ec); padding: 35px 25px; border-radius: 20px; text-align: center; border: 2px solid #f48fb1; transition: 0.3s; }
.variety-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(194,24,91,0.2); border-color: #d4af37; }
.variety-icon { font-size: 3rem; margin-bottom: 15px; }
.variety-card h3 { color: #c2185b; margin-bottom: 10px; font-size: 1.2rem; }
.variety-card p { color: #777; margin-bottom: 15px; }
.variety-price { font-size: 1.4rem; color: #d4af37; font-weight: bold; }

/* Features Luxury */
.features-luxury { padding: 80px 0; background: #fff; }
.features-luxury h2 { text-align: center; font-size: 2.2rem; color: #c2185b; margin-bottom: 50px; }
.supply-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.supply-item { background: linear-gradient(135deg, #fce4ec, #f8bbd9); padding: 35px 25px; border-radius: 16px; text-align: center; border: 2px solid #f48fb1; }
.supply-num { font-size: 2.5rem; font-weight: bold; color: #c2185b; margin-bottom: 15px; }
.supply-item h4 { color: #c2185b; margin-bottom: 8px; font-size: 1.2rem; }
.supply-item p { color: #777; }

/* Footer */
.footer-luxury { background: linear-gradient(135deg, #c2185b, #880e4f); color: #fce4ec; text-align: center; padding: 30px 0; }
.footer-luxury p { margin: 0; }

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