* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: linear-gradient(135deg, #d4f5e9 0%, #a8e6cf 100%); color: #333; line-height: 1.6; }
header { background: linear-gradient(135deg, #2c3e50 0%, #4a6785 100%); color: #fff; padding: 18px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
nav { max-width: 960px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
nav a { color: #fff; text-decoration: none; margin-left: 20px; font-size: 15px; transition: color 0.2s; }
nav a:hover { color: #a8c8ff; }
.logo { font-weight: bold; font-size: 20px; letter-spacing: 0.5px; }
.container { max-width: 960px; margin: 30px auto; padding: 0 20px; }
.container h2 { font-size: 26px; margin-bottom: 20px; background: linear-gradient(90deg, #667eea, #764ba2); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; }
.ad-banner { text-align: center; margin: 20px 0; border-radius: 10px; padding: 15px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.hero { text-align: center; padding: 40px 20px; }
.hero h1 { font-size: 42px; margin-bottom: 15px; font-style: italic; font-weight: 800; text-shadow: 2px 2px 4px rgba(0,0,0,0.15); }
.hero p { color: #333; font-size: 18px; font-style: italic; font-weight: 600; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.product { background: #fff; border-radius: 10px; padding: 18px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.product:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.product img { width: 100%; height: 130px; object-fit: cover; background: #eee; border-radius: 6px; margin-bottom: 12px; }
.price { color: #2c3e50; font-weight: bold; margin: 8px 0; font-size: 17px; }
.btn { background: linear-gradient(135deg, #2c3e50, #4a6785); color: #fff; border: none; padding: 9px 18px; border-radius: 6px; cursor: pointer; font-size: 14px; transition: opacity 0.2s, transform 0.2s; }
.btn:hover { opacity: 0.85; transform: scale(1.03); }
footer { text-align: center; padding: 20px; color: #999; font-size: 13px; margin-top: 40px; }
