:root{
  --orange:#e55a19;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --radius:10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
}

.bg{
  position:fixed; inset:0;
  background:url("/assets/bg.jpg") center/cover no-repeat;
  filter:saturate(0.9);
  z-index:-2;
}
.overlay{
  position:fixed; inset:0;
  background:rgba(255,255,255,.82);
  z-index:-1;
}

.top{
  max-width:1100px;
  margin:28px auto 0;
  padding:0 14px;
}
.brand{
  display:flex; gap:14px; align-items:center;
  margin-bottom:12px;
}
.logo{
  width:74px; height:74px; border-radius:12px;
  background:#fff; box-shadow:var(--shadow);
  object-fit:cover;
}
.brand-title{font-weight:800; font-size:22px; color:#111}
.brand-sub{color:#4b5563; font-size:13px}

.nav{
  background:var(--orange);
  border-radius:8px;
  padding:10px 12px;
  display:flex; flex-wrap:wrap; gap:10px;
  box-shadow:var(--shadow);
}
.nav a{
  color:#fff; text-decoration:none;
  font-weight:700; font-size:13px;
  padding:6px 8px;
  border-radius:6px;
  background:rgba(255,255,255,.08);
}
.nav a.active{background:rgba(0,0,0,.18)}

.wrap{
  max-width:1100px;
  margin:16px auto 40px;
  padding:0 14px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:18px;
}

.left{
  background:rgba(255,255,255,.55);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}
.section-head{
  padding:10px 8px 14px;
  border-bottom:1px solid rgba(0,0,0,.08);
  margin-bottom:12px;
}
.section-head h2{
  margin:0;
  font-size:16px;
  color:#111;
}
.hint{font-size:12px;color:var(--muted);margin-top:4px}

.product{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap:14px;
  background:var(--card);
  border-radius:var(--radius);
  padding:12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  margin-bottom:12px;
}
.p-img{
  display:flex; align-items:center; justify-content:center;
}
.p-img img{
  width:78px; height:78px; object-fit:contain;
}
.p-title{
  margin:0;
  font-size:14px;
  font-weight:900;
  color:#111;
  text-transform:uppercase;
}
.p-desc{
  margin:6px 0 10px;
  font-size:12px;
  color:#111;
  line-height:1.35;
}
.pay-row{
  display:flex; flex-wrap:wrap; gap:8px;
}
.pay{
  display:inline-block;
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  padding:7px 10px;
  border-radius:6px;
  color:#fff;
}
.pay.sms{background:#f97316}
.pay.przelew{background:#22c55e}
.pay.paypal{background:#3b82f6}
.pay.psc{background:#ef4444}

.right{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.box{
  background:rgba(255,255,255,.85);
  border-radius:var(--radius);
  padding:12px;
  box-shadow:var(--shadow);
}
.box-title{
  font-weight:900;
  font-size:13px;
  margin-bottom:10px;
}
.buyers{display:flex; gap:6px; flex-wrap:wrap}
.face{
  width:34px;height:34px;border-radius:8px;
  background:linear-gradient(135deg,#ddd,#fff);
  border:1px solid rgba(0,0,0,.06);
}
.box-note{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
.list{
  margin:0; padding-left:18px;
  font-size:12px; color:#111;
}
.links{display:flex; gap:10px; flex-wrap:wrap}
.links a{
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  color:#111;
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
  padding:7px 10px;
  border-radius:8px;
}

.foot{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:10px;
  color:#374151;
  font-size:12px;
}
.sep{opacity:.5}

@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
}
