* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f7f9fc; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

header { background: #6C4DF3; color: white; padding: 20px 0; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; }
nav a { color: white; text-decoration: none; margin-left: 20px; font-weight: 500; }

.hero { background: linear-gradient(135deg, #6C4DF3 0%, #A78BFA 100%); color: white; text-align: center; padding: 80px 20px; }
.hero h2 { font-size: 42px; margin-bottom: 10px; }
.hero p { font-size: 18px; margin-bottom: 30px; }
.btn { background: white; color: #6C4DF3; padding: 12px 30px; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; }

main { padding: 60px 0; }
main h3 { text-align: center; font-size: 32px; margin-bottom: 40px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); text-align: center; }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.product-card h4 { font-size: 20px; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: #666; margin-bottom: 15px; min-height: 40px; }
.price { font-size: 22px; font-weight: 700; color: #6C4DF3; margin-bottom: 15px; }
.buy-btn { background: #6C4DF3; color: white; padding: 10px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; }
.buy-btn:hover { background: #563ad6; }

footer { background: #222; color: #aaa; text-align: center; padding: 30px 0; margin-top: 60px; }
footer a { color: #aaa; text-decoration: none; margin: 0 10px; }