:root { --bg:#F1F2EB; --card:#fff; --text:#0C120C; --muted:#5f6472; --border:#d9dbd2; --accent:#333745; --ok:#146c35; --bad:#c92a3a; }
body, input, textarea, button { font-family:'Barlow Condensed',sans-serif; }
h1, h2 { font-family:'Bree Serif',serif; font-weight:400; }
.brand span { font-family:'Dela Gothic One',sans-serif; }
* { box-sizing: border-box; }
body { margin:0; background:var(--bg); color:var(--text); font-size:17px; }
.top { display:flex; justify-content:space-between; align-items:center; padding:0 5%; height:56px; background:#fff; box-shadow:0 1px 12px rgba(0,0,0,.15); position:sticky; top:0; z-index:5; }
.brand { display:flex; align-items:center; gap:10px; height:100%; color:var(--text); text-decoration:none; font-size:1.05rem; padding:8px 0; } .brand img { height:100%; }
main { max-width:960px; margin:0 auto; padding:16px; }
h1 { font-size:22px; margin:8px 0 12px; } h2 { font-size:17px; margin:20px 0 8px; }
.muted { color:var(--muted); font-size:14px; }
.btn { display:inline-block; border:1px solid var(--accent); background:var(--accent); color:#fff; padding:10px 18px 7px; border-radius:5px; font-size:17px; font-weight:600; cursor:pointer; text-decoration:none; transition:background-color .3s,color .3s; } .btn:hover:not(:disabled) { background:#fff; color:var(--accent); }
.btn.ghost { background:#fff; color:var(--accent); } .btn.ghost:hover:not(:disabled) { background:var(--accent); color:#fff; } .btn.danger { background:transparent; border-color:var(--bad); color:var(--bad); }
.btn.small { padding:5px 10px; font-size:13px; } .btn:disabled { opacity:.5; cursor:default; }
input, textarea { width:100%; padding:10px; border:1px solid var(--border); border-radius:5px; background:var(--card); color:var(--text); font-size:17px; }
label { display:block; font-size:13px; color:var(--muted); margin:10px 0 4px; }
.search { margin-bottom:14px; }
.grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:12px; }
.card { background:var(--card); border:1px solid var(--border); border-radius:5px; padding:15px; box-shadow:0 0 15px rgba(0,0,0,.12); }
a.card { color:var(--text); text-decoration:none; font-weight:600; } a.card:hover { border-color:var(--accent); }
.item img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:8px; margin-bottom:10px; }
.item .price { font-weight:700; font-size:18px; margin:6px 0; } .item p { margin:4px 0 10px; color:var(--muted); font-size:14px; }
.row { display:flex; gap:8px; align-items:center; flex-wrap:wrap; } .row > * { flex:0 0 auto; } .grow { flex:1 1 0 !important; min-width:140px; }
.narrow { max-width:420px; margin:24px auto; }
.err { color:var(--bad); font-size:14px; margin-top:8px; } .okmsg { color:var(--ok); font-size:14px; margin-top:8px; }
.tabs { display:flex; gap:6px; margin:8px 0 14px; border-bottom:1px solid var(--border); }
.tabs button { background:none; border:none; padding:10px 14px; font-size:15px; color:var(--muted); cursor:pointer; border-bottom:2px solid transparent; }
.tabs button.active { color:var(--text); border-color:var(--accent); font-weight:600; }
table { width:100%; border-collapse:collapse; font-size:14px; } th, td { text-align:left; padding:8px 6px; border-bottom:1px solid var(--border); } th { color:var(--muted); font-weight:500; }
.modal { position:fixed; inset:0; background:rgba(0,0,0,.55); display:flex; align-items:center; justify-content:center; padding:16px; z-index:20; }
.modal .card { width:100%; max-width:400px; }
#toast { position:fixed; bottom:16px; left:50%; transform:translateX(-50%); background:#222; color:#fff; padding:10px 16px; border-radius:8px; opacity:0; transition:opacity .2s; pointer-events:none; font-size:14px; }
#toast.show { opacity:1; }
.thumb { width:56px; height:56px; object-fit:cover; border-radius:8px; }
.badge { display:inline-block; padding:2px 8px; border-radius:999px; font-size:12px; background:var(--border); }

/* landing hero, as on Pronite: the stage photo under a dark wash, big display type, search on top */
.hero { width:100vw; margin:-16px 0 22px calc(50% - 50vw); padding:84px 5% 64px; text-align:center; color:#fff;
  background:linear-gradient(rgba(6,8,12,.62),rgba(6,8,12,.62)),url(/assets/hero.webp) center/cover; }
.hero h1 { font-family:'Dela Gothic One',sans-serif; font-size:clamp(28px,6vw,46px); margin:0 0 6px; }
.hero p { margin:0 0 18px; color:rgba(255,255,255,.85); }
.hero .search { max-width:520px; margin:0 auto; border:none; }
main .grid a.card { display:flex; align-items:center; min-height:88px; font-family:'Bree Serif',serif; font-size:20px; font-weight:400; }
.item .price { font-family:'Bree Serif',serif; }
body { overflow-x:hidden; }
