/* 呈贡花卉 - 紫色+粉色主题 */
* { 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-violet { background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 40%, #f8bbd9 100%); min-height: 100vh; display: flex; flex-direction: column; }
.nav-flower { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(123,31,162,0.2); backdrop-filter: blur(10px); }
.logo { font-size: 1.5rem; font-weight: bold; color: #fce4ec; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.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: #f3e5f5; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 40px; background: #9c27b0; color: #fff; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #7b1fa2; transform: translateY(-2px); }
.btn-violet { background: #ce93d8; color: #4a148c; }
.btn-violet:hover { background: #9c27b0; color: #fff; }

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

/* Categories */
.categories { padding: 80px 0; background: #f3e5f5; }
.categories h2 { text-align: center; font-size: 2.2rem; color: #7b1fa2; margin-bottom: 40px; }
.category-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.tab { padding: 12px 25px; background: #fff; border-radius: 50px; border: 2px solid #ce93d8; cursor: pointer; color: #7b1fa2; font-weight: 500; transition: 0.3s; }
.tab.active, .tab:hover { background: #9c27b0; color: #fff; border-color: #9c27b0; }
.product-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.showcase-item { background: #fff; padding: 25px; border-radius: 16px; border: 2px solid #e1bee7; transition: 0.3s; }
.showcase-item:hover { border-color: #9c27b0; box-shadow: 0 8px 25px rgba(156,39,176,0.15); }
.showcase-item h3 { color: #7b1fa2; margin-bottom: 8px; }
.showcase-item .price { color: #e91e63; font-weight: bold; font-size: 1.2rem; }

/* Features Flower */
.features-flower { padding: 80px 0; background: #fff; }
.features-flower h2 { text-align: center; font-size: 2.2rem; color: #7b1fa2; margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { background: linear-gradient(135deg, #f3e5f5, #e1bee7); padding: 35px 25px; border-radius: 20px; text-align: center; border: 2px solid #ce93d8; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(156,39,176,0.2); }
.service-icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { color: #7b1fa2; margin-bottom: 8px; font-size: 1.2rem; }
.service-card p { color: #777; }

/* Footer */
.footer-flower { background: linear-gradient(135deg, #7b1fa2, #4a148c); color: #f3e5f5; text-align: center; padding: 30px 0; }
.footer-flower p { margin: 0; }

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