
:root{
  --bg:#0b0b0b; --bg2:#121212; --gold:#d4af37; --text:#f4e6b0; --muted:#bfa36a;
  --card:#0f0f0f; --line:rgba(212,175,55,.35);
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial; background:radial-gradient(1200px 600px at 70% 15%, rgba(212,175,55,.18), transparent 60%), var(--bg); color:var(--text)}
a{color:inherit;text-decoration:none}
.wrap{width:min(1160px,92vw); margin:0 auto}
.top{position:sticky;top:0;z-index:30; backdrop-filter: blur(8px); background:rgba(10,10,10,.75); border-bottom:1px solid var(--line)}
.top .wrap{display:flex;align-items:center;justify-content:space-between; padding:14px 0}
.brand__name{letter-spacing:.18em; font-weight:800; font-size:18px}
.brand__name span{opacity:.8; font-weight:700}
.brand__tag{font-size:12px; color:var(--muted); margin-top:3px}
.cartBtn{border:1px solid var(--line); background:transparent; color:var(--text); padding:10px 14px; border-radius:14px; cursor:pointer}
.cartBtn span{background:var(--gold); color:#111; padding:2px 8px; border-radius:999px; margin-left:8px; font-weight:800}
.hero{display:grid;grid-template-columns:1.3fr .7fr; gap:18px; padding:22px 0 14px}
.hero h1{margin:0 0 10px;font-size:34px; letter-spacing:.02em}
.hero p{margin:0 0 14px; color:rgba(244,230,176,.85); line-height:1.4}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center; padding:12px 16px; border-radius:16px; border:1px solid var(--line); background:rgba(212,175,55,.08); color:var(--text); font-weight:700}
.btn--ghost{background:transparent}
.btn--wa{background:rgba(37,211,102,.12); border-color:rgba(37,211,102,.35)}
.hero__note{margin-top:12px; font-size:12px; color:rgba(244,230,176,.72); border-left:3px solid rgba(212,175,55,.5); padding-left:10px}
.hero__card{border:1px solid var(--line); border-radius:20px; background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.25)); padding:16px; min-height:140px}
.hero__cardTitle{font-weight:900; letter-spacing:.12em; color:var(--gold)}
.hero__cardText{margin-top:8px; color:rgba(244,230,176,.75)}
.controls{display:flex;align-items:center;justify-content:space-between; gap:12px; padding:10px 0 18px; flex-wrap:wrap}
.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{padding:8px 12px; border-radius:999px; border:1px solid var(--line); background:transparent; color:rgba(244,230,176,.9); cursor:pointer; font-weight:700; font-size:13px}
.chip.active{background:rgba(212,175,55,.16)}
.search{flex:1; min-width:220px; padding:12px 14px; border-radius:14px; border:1px solid var(--line); background:rgba(0,0,0,.35); color:var(--text)}
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding-bottom:36px}
@media (max-width: 980px){.grid{grid-template-columns:repeat(2,1fr)} .hero{grid-template-columns:1fr}}
@media (max-width: 560px){.grid{grid-template-columns:1fr}}
.card{border:1px solid var(--line); background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.35)); border-radius:22px; overflow:hidden; position:relative}
.card img{width:100%; display:block}
.card__body{padding:12px 12px 14px}
.card__name{font-weight:900; letter-spacing:.02em}
.card__meta{margin-top:4px; font-size:13px; color:rgba(244,230,176,.75)}
.card__row{display:flex; align-items:center; justify-content:space-between; margin-top:10px; gap:10px}
.price{font-weight:900; color:var(--gold)}
.add{border:1px solid var(--line); background:transparent; color:var(--text); padding:10px 12px; border-radius:14px; cursor:pointer; font-weight:800}
.tag{position:absolute; top:12px; left:12px; background:var(--gold); color:#121212; font-weight:900; padding:7px 10px; border-radius:12px; font-size:12px; letter-spacing:.08em}
.cart{position:fixed; top:0; right:-420px; width:400px; max-width:92vw; height:100vh; background:rgba(12,12,12,.96); border-left:1px solid var(--line); z-index:50; transition:right .22s ease; display:flex; flex-direction:column}
.cart.open{right:0}
.backdrop{position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:40; opacity:0; pointer-events:none; transition:opacity .2s}
.backdrop.show{opacity:1; pointer-events:auto}
.cart__head{display:flex; align-items:center; justify-content:space-between; padding:14px; border-bottom:1px solid var(--line)}
.cart__title{font-weight:900; letter-spacing:.08em}
.iconBtn{border:1px solid var(--line); background:transparent; color:var(--text); width:40px; height:40px; border-radius:14px; cursor:pointer}
.cart__items{padding:12px 14px; overflow:auto; flex:1; display:flex; flex-direction:column; gap:10px}
.item{border:1px solid rgba(212,175,55,.25); border-radius:18px; padding:10px; display:grid; grid-template-columns:58px 1fr auto; gap:10px; align-items:center}
.item img{width:58px;height:58px;border-radius:14px; object-fit:cover; border:1px solid rgba(212,175,55,.25)}
.item__name{font-weight:800; font-size:13px}
.item__meta{font-size:12px; color:rgba(244,230,176,.7)}
.qty{display:flex; gap:6px; align-items:center}
.qty button{width:34px;height:34px;border-radius:12px;border:1px solid var(--line); background:transparent; color:var(--text); cursor:pointer; font-weight:900}
.qty span{min-width:18px; text-align:center; font-weight:900}
.cart__foot{padding:12px 14px 16px; border-top:1px solid var(--line)}
.row{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px}
.form{display:grid; gap:8px; margin-bottom:10px}
.form input,.form select,.form textarea{padding:12px 12px; border-radius:14px; border:1px solid var(--line); background:rgba(0,0,0,.35); color:var(--text)}
.form textarea{min-height:70px; resize:vertical}
.small{margin-top:10px; font-size:12px; color:rgba(244,230,176,.7)}
