* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; }

/* Header & Nav */
.header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.logo { font-size: 1.5rem; font-weight: bold; color: #1a365d; }
nav a { text-decoration: none; color: #333; margin-left: 20px; font-weight: 500; transition: 0.3s; }
nav a:hover { color: #b7791f; }

/* Hero Section */
.hero { height: 80vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.5rem; margin-bottom: 30px; }

/* Buttons */
.btn, .btn-small { display: inline-block; padding: 12px 30px; background: #b7791f; color: #fff; text-decoration: none; border-radius: 4px; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover, .btn-small:hover { background: #975a16; }
.btn-small { padding: 8px 15px; font-size: 0.9rem; margin-top: 10px; }

/* Containers & Grids */
.container { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
.featured h2, .page-banner h1 { text-align: center; margin-bottom: 40px; color: #1a365d; font-size: 2.5rem; }
.page-banner { padding: 80px 0; background: #f7fafc; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer; padding-bottom: 20px; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 250px; object-fit: cover; }
.product-card h3 { padding: 15px 20px 5px; color: #1a365d; }
.product-card h3 small { color: #666; font-weight: normal; font-size: 0.9rem; }
.product-card .price { padding: 0 20px; color: #b7791f; font-weight: bold; font-size: 1.2rem; }

/* Modal */
.modal { display: none; position: fixed; z-index: 1000; left: 0;

---
文件整理好了，需要我继续教你怎么在 Cloudflare Pages 上部署吗？