/* Base styles for lacskate.shop */
:root{--bg:#0f1a2b;--fg:#f3f7fb;--muted:#c9d4e2;--accent:#34d399;--card:#101c32;--border:#1f2a44}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;background:var(--bg);color:var(--fg);font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.site-header{position:sticky;top:0;background:#0b1220;border-bottom:1px solid var(--border);z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{color:var(--fg);text-decoration:none;font-weight:800;letter-spacing:-.02em}
.nav-link{color:var(--muted);text-decoration:none;margin-left:.75rem}
.nav-link:hover{color:var(--fg)}
.home h1{margin:1rem 0 1.25rem}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem}
.card{background:var(--card);border:1px solid var(--border);border-radius:12px;overflow:hidden}
.thumb{display:block;height:180px;background:#0b1220}
.thumb img{width:100%;height:100%;object-fit:cover}
.card-body{padding:0.75rem}
.card-title{margin:0 0 .5rem;font-size:1rem}
.card-price{font-weight:700;margin-bottom:.75rem}
.btn{appearance:none;background:var(--accent);color:#053321;border:none;border-radius:8px;padding:.5rem .75rem;font-weight:700;cursor:pointer}
.btn:hover{filter:brightness(1.05)}
.site-footer{border-top:1px solid var(--border);margin-top:2rem}
.site-footer .container{padding:1.5rem}