/* 宣威倘塘豆腐 - 米色+红色主题 */
* { 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-beige { background: linear-gradient(135deg, #f5f5dc 0%, #faf0e6 50%, #c0392b 100%); min-height: 100vh; display: flex; flex-direction: column; }
.nav-warm { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(192,57,43,0.15); }
.logo { font-size: 1.5rem; font-weight: bold; color: #c0392b; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: #c0392b; 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: #c0392b; margin-bottom: 20px; }
.hero-content p { font-size: 1.3rem; color: #7b241c; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 40px; background: #c0392b; color: #fff; text-decoration: none; border-radius: 8px; font-weight: bold; transition: 0.3s; }
.btn:hover { background: #922b21; }
.btn-red { background: #e74c3c; }

/* Banner Red */
.banner-red { background: #c0392b; padding: 40px 0; }
.banner-red p { max-width: 800px; margin: 0 auto; text-align: center; color: #faf0e6; font-size: 1.1rem; line-height: 1.8; }

/* Products Beige */
.products-beige { padding: 80px 0; background: #faf0e6; }
.products-beige h2 { text-align: center; font-size: 2.2rem; color: #c0392b; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.product-warm { background: #fff; padding: 30px; border-radius: 16px; text-align: center; position: relative; border: 2px solid #f5f5dc; transition: 0.3s; }
.product-warm:hover { border-color: #c0392b; box-shadow: 0 10px 30px rgba(192,57,43,0.15); }
.product-warm .badge { position: absolute; top: 15px; right: 15px; background: #c0392b; color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; }
.badge-red { background: #c0392b !important; }
.product-warm h3 { color: #c0392b; margin-bottom: 10px; }
.product-warm .price { font-size: 1.4rem; color: #e74c3c; font-weight: bold; margin: 10px 0; }
.product-warm p { color: #777; font-size: 0.95rem; }

/* Process */
.process { padding: 80px 0; background: #fff; }
.process h2 { text-align: center; font-size: 2.2rem; color: #c0392b; margin-bottom: 50px; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.step { text-align: center; padding: 30px; background: #faf0e6; border-radius: 16px; border: 2px solid #f5f5dc; }
.step-num { font-size: 2.5rem; font-weight: bold; color: #c0392b; margin-bottom: 15px; }
.step-title { color: #c0392b; font-size: 1.3rem; font-weight: bold; margin-bottom: 8px; }
.step-desc { color: #777; }

/* Footer */
.footer-beige { background: linear-gradient(135deg, #c0392b, #922b21); color: #faf0e6; text-align: center; padding: 30px 0; }
.footer-beige p { margin: 0; }

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