/* Black + bright red theme, mobile-first */ 
:root{--bg:#0b0b0b;--text:#f6f6f6;--muted:#b5b5b5;--accent:#e50914;--card:#111;--border:#1f1f1f;--shadow:0 10px 30px rgba(0,0,0,.45)}
*{box-sizing:border-box}
html,body{background:var(--bg);color:var(--text);margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;line-height:1.45}
a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:0 16px}
.site-header{background:#000;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:20}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px}
.logo{height:42px;width:auto}
.site-header h1{margin:0;font-size:1.2rem;font-weight:800}
.site-header span{color:var(--accent)}
.header-cta{background:var(--accent);color:#fff;border:0;border-radius:12px;padding:10px 14px;font-weight:700}
.card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:16px;box-shadow:var(--shadow)}
.hero{text-align:center;background:linear-gradient(180deg,#121212,#0d0d0d);margin-top:14px}
.hero h2{margin:0 0 6px;font-size:clamp(1.4rem,4.5vw,2rem);font-weight:800}
.accent{color:var(--accent)}
.hero p{color:var(--muted);margin:8px 0 10px}
.cta-row{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.button{display:inline-block;padding:14px 16px;border-radius:14px;font-weight:800;min-height:44px;text-align:center}
.button.primary{background:var(--accent);color:#fff}
.button.ghost{background:transparent;border:2px solid var(--accent);color:#fff}
.button.wide{width:100%}
.grid{display:grid;grid-template-columns:1fr;gap:14px}
@media(min-width:720px){.grid{grid-template-columns:repeat(2,1fr)}}
.card h3{display:flex;justify-content:space-between;align-items:baseline;margin:0 0 8px}
.price{font-weight:900;color:#f6f6f6}
.card ul{margin:0 0 12px 18px}
.actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:auto}
.gallery{display:grid;grid-template-columns:1fr 1fr;gap:10px}
@media(min-width:720px){.gallery{grid-template-columns:repeat(4,1fr)}}
.gallery img{width:100%;border-radius:12px;display:block;transition:transform .25s ease}
.gallery img:hover{transform:scale(1.02)}
.site-footer{margin:40px 0 20px;text-align:center;color:var(--muted)}
.mobile-sticky{position:fixed;bottom:0;left:0;right:0;background:rgba(0,0,0,.92);border-top:1px solid var(--border);
display:flex;justify-content:space-around;padding:10px;backdrop-filter:blur(6px);z-index:25}
.mobile-sticky a{color:#fff;border:2px solid var(--accent);border-radius:14px;padding:10px 12px;min-height:44px;flex:1;text-align:center;margin:0 4px}
@media(min-width:820px){.mobile-sticky{display:none}}
