:root{
--bg:#0b0b0c;
--panel:#141416;
--panel2:#1b1c20;
--text:#f4f4f5;
--muted:#b6b6be;
--gold:#f6b73c;
--stroke:#2a2b31;
--shadow: 0 14px 40px rgba(0,0,0,.45);
--r: 16px;
}

*{box-sizing:border-box}
body{
margin:0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
background: radial-gradient(1200px 800px at 30% 0%, rgba(246,183,60,.12), transparent 60%),
radial-gradient(900px 700px at 90% 10%, rgba(255,80,120,.10), transparent 55%),
var(--bg);
color:var(--text);
}

a{color:inherit; text-decoration:none}
.wrap{max-width:1100px; margin:0 auto; padding:18px 16px 40px}

.topbar{
position:sticky; top:0; z-index:20;
display:flex; gap:14px; align-items:center; justify-content:space-between;
padding:14px 16px;
background: rgba(10,10,12,.72);
backdrop-filter: blur(14px);
border-bottom:1px solid rgba(255,255,255,.06);
}

.brand{display:flex; gap:12px; align-items:center}
.dot{
width:10px; height:10px; border-radius:50%;
background: var(--gold);
box-shadow: 0 0 14px rgba(246,183,60,.65);
}
.brandName{font-weight:900; letter-spacing:.2px}
.brandTag{font-size:12px; color:var(--muted)}

.searchWrap{flex:1; max-width:560px}
.search{
width:100%;
padding:12px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,.10);
background: rgba(20,20,24,.9);
color:var(--text);
outline:none;
}

.cta{
padding:10px 14px;
border-radius:999px;
background: linear-gradient(90deg, rgba(246,183,60,.95), rgba(255,120,70,.92));
color:#111;
font-weight:900;
box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.heroCard{
border-radius: var(--r);
background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
border:1px solid rgba(255,255,255,.08);
box-shadow: var(--shadow);
padding:18px;
}
.heroCard h1{margin:0 0 6px; font-size:28px}
.heroCard p{margin:0 0 12px; color:var(--muted); line-height:1.4}

.chips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
cursor:pointer;
padding:8px 12px;
border-radius:999px;
border:1px solid rgba(255,255,255,.10);
background: rgba(20,20,24,.7);
color:var(--text);
}
.chip.active{
border-color: rgba(246,183,60,.55);
box-shadow: 0 0 0 3px rgba(246,183,60,.12);
}

.sectionHead{
display:flex; align-items:flex-end; justify-content:space-between;
margin:18px 2px 10px;
}
.muted{color:var(--muted); font-size:13px}

.grid{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:14px;
}
@media (max-width: 920px){ .grid{grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid{grid-template-columns: 1fr;} }

.card{
border-radius: var(--r);
background: rgba(20,20,24,.78);
border:1px solid rgba(255,255,255,.08);
overflow:hidden;
box-shadow: var(--shadow);
}
.thumb{
height:170px;
background: linear-gradient(135deg, rgba(246,183,60,.14), rgba(255,80,120,.10));
display:flex; align-items:center; justify-content:center;
border-bottom:1px solid rgba(255,255,255,.06);
}
.thumb img{width:100%; height:100%; object-fit:cover}
.thumb span{color:rgba(255,255,255,.55); font-weight:700}
.cardBody{padding:12px}
.titleRow{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.title{font-weight:900; line-height:1.15}
.price{font-weight:900; color:var(--gold)}
.desc{margin:8px 0 10px; color:var(--muted); font-size:13px; line-height:1.35}

.btnRow{display:flex; gap:10px; align-items:center; justify-content:space-between}
.badge{
font-size:12px; color:rgba(255,255,255,.7);
padding:6px 10px; border-radius:999px;
border:1px solid rgba(255,255,255,.10);
background: rgba(0,0,0,.15);
}
.buyBtn{
display:inline-block;
padding:10px 12px;
border-radius:12px;
background: linear-gradient(90deg, rgba(246,183,60,.95), rgba(255,120,70,.92));
color:#111;
font-weight:900;
border:none;
}

.footer{
margin-top:22px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,.08);
display:flex; justify-content:space-between; gap:12px;
}
.footLinks{display:flex; gap:14px; flex-wrap:wrap}
.footLinks a{color:rgba(255,255,255,.9)}
.footLinks a:hover{color:var(--gold)}