* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0a0a0a; color: #e5e5e5; }
a { color: #7c3aed; text-decoration: none; }

.shop-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.shop-nav { background: #141414; border-bottom: 1px solid #262626; padding: 12px 0; }
.shop-nav .shop-container { display: flex; align-items: center; justify-content: space-between; }
.shop-brand { font-size: 1.3rem; font-weight: 700; color: #e5e5e5; }
.shop-brand .powered-by { display: inline-block; font-weight: 300 !important; font-size: 0.6rem !important; color: #666; opacity: 0.5; margin-left: 6px; letter-spacing: 0; }
.shop-nav-links { display: flex; gap: 16px; align-items: center; font-size: 0.9rem; }
.shop-nav-links a { color: #999; }

.shop-hero { background: linear-gradient(135deg, #1a0a2e, #0d0d2b); padding: 60px 0; text-align: center; border-bottom: 1px solid #262626; }
.shop-hero h1 { font-size: 2.2rem; margin-bottom: 8px; }
.shop-hero p { color: #888; font-size: 1.1rem; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; padding-bottom: 40px; }
.product-card { background: #141414; border: 1px solid #262626; border-radius: 8px; overflow: hidden; transition: border-color 0.15s; }
.product-card:hover { border-color: #7c3aed; }
.product-img { width: 100%; height: 140px; background: #1a1a2e; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #555; }
.product-body { padding: 16px; }
.product-body h3 { font-size: 1rem; margin-bottom: 4px; }
.product-body p { color: #888; font-size: 0.85rem; margin-bottom: 8px; }
.product-price { font-size: 1.2rem; font-weight: 700; color: #7c3aed; margin-bottom: 12px; }
.add-btn { width: 100%; padding: 10px; background: #7c3aed; color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 0.9rem; transition: background 0.15s; }
.add-btn:hover { background: #6d28d9; }
