﻿* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fafafc; color: #1a1a2e; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.site-header { background: #fff; border-bottom: 1px solid #eee; padding: 1.25rem 0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 700; font-size: 1.5rem; }
nav { display: flex; gap: 2rem; align-items: center; }
nav a { font-weight: 500; }
#cart-count { background: #1a1a2e; color: #fff; border-radius: 20px; padding: 2px 10px; font-size: 0.75rem; margin-left: 4px; }
.hero { padding: 6rem 0; text-align: center; background: radial-gradient(circle at 30% 20%, #e8e8ff 0%, transparent 50%); }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.hero p { font-size: 1.2rem; color: #555; margin-bottom: 2rem; }
.btn { display: inline-block; background: #1a1a2e; color: #fff; padding: 0.8rem 1.8rem; border-radius: 100px; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(0,0,0,.2); }
.btn-outline { background: transparent; color: #1a1a2e; border: 1px solid #ccc; }
.features { padding: 4rem 0; }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 3rem; }
.card-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { background: #fff; padding: 2rem; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.04); transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: #666; margin-bottom: 1rem; }
.card .price { font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }
form label { display: block; margin-bottom: 1rem; font-weight: 500; }
form input, form textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: 10px; font-size: 1rem; margin-top: 0.3rem; font-family: inherit; }
form textarea { min-height: 100px; resize: vertical; }
form button { margin-top: 1rem; }
.site-footer { padding: 3rem 0; text-align: center; color: #666; border-top: 1px solid #eee; margin-top: 4rem; }
.site-footer a { color: #1a1a2e; font-weight: 500; }
