/* blicks.store - Streetwear & Archival Merch Store */
:root {
  --bg-primary: #0F0F12;
  --bg-surface: #18181F;
  --border: #2A2A38;
  --accent: #E11D48;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; }
header { background: var(--bg-surface); border-bottom: 1px solid var(--border); padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; color: #FFF; text-decoration: none; }
nav a { color: var(--text-secondary); text-decoration: none; margin-left: 1.5rem; font-weight: 500; }
nav a:hover { color: #FFF; }
.hero { text-align: center; padding: 4rem 1.5rem 3rem 1.5rem; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 2.75rem; font-weight: 900; line-height: 1.15; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto 4rem auto; padding: 0 1.5rem; }
.product-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.product-img-box { height: 220px; background: #22222E; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--accent); }
.product-info { padding: 1.5rem; }
.product-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-price { font-size: 1.4rem; font-weight: 800; color: var(--accent); margin-bottom: 1rem; }
.product-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.btn-buy { width: 100%; background: var(--accent); color: white; border: none; border-radius: 6px; padding: 0.85rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s; }
.btn-buy:hover { opacity: 0.9; }
footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 3rem 1.5rem; text-align: center; color: #71717A; font-size: 0.875rem; }
footer a { color: var(--text-secondary); text-decoration: none; margin: 0 0.5rem; }
