:root{
  --bg: #0b0d12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.12);
  --accent: #7c5cff;
  --accent2:#22c55e;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124,92,255,.28), transparent 55%),
              radial-gradient(900px 500px at 95% 0%, rgba(34,197,94,.18), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{color:inherit; text-decoration:none}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.72);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__mark{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(34,197,94,.7));
  box-shadow: var(--shadow);
  font-weight:800;
}
.brand__title{font-weight:700; letter-spacing:.2px}
.brand__subtitle{font-size:12px; color:var(--muted); margin-top:2px}

.actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight:600;
  gap:8px;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22)}
.btn:active{transform: translateY(1px)}
.btn--ghost{background: transparent}
.btn--primary{background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,197,94,.75)); border-color: transparent}
.btn--primary:hover{background: linear-gradient(135deg, rgba(124,92,255,1), rgba(34,197,94,.85))}


.hero{padding:46px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch}
.hero__title{font-size:42px; line-height:1.06; margin:0 0 12px}
.hero__lead{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6}
.hero__meta{display:flex; flex-wrap:wrap; gap:10px}

.pill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding:8px 12px;
  border-radius:999px;
  color: var(--muted);
  font-size:13px;
}

.section{padding:34px 0}
.section__head{display:flex; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:14px}
.section__title{margin:0; font-size:24px}
.section__subtitle{margin:0; color:var(--muted); max-width:70ch}

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.card--accent{
  background: linear-gradient(180deg, rgba(124,92,255,.16), rgba(255,255,255,.05));
}
.card__title{margin:0 0 8px; font-size:18px}
.card__text{margin:0 0 14px; color:var(--muted); line-height:1.6}
.card__actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.card__hint{margin:0; font-size:12px; color: var(--muted)}

.toolbar{
  display:grid;
  grid-template-columns: 1.3fr .7fr .7fr auto;
  gap:12px;
  align-items:end;
  margin: 18px 0;
}

.field__label{display:block; font-size:12px; color:var(--muted); margin:0 0 6px}
.input, .select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline: none;
}
.input:focus, .select:focus{border-color: rgba(124,92,255,.6); box-shadow: 0 0 0 4px rgba(124,92,255,.18)}

.tableWrap{overflow:auto; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(0,0,0,.18)}
.table{width:100%; border-collapse:collapse; min-width:760px}
.table thead th{
  position:sticky; top:0;
  background: rgba(11,13,18,.92);
  border-bottom: 1px solid var(--line);
  font-size:12px;
  color: var(--muted);
  text-align:left;
  padding:12px 12px;
}
.table tbody td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08); vertical-align:top}
.table tbody tr:hover{background: rgba(255,255,255,.05)}
.col-id{width:60px}
.col-unit{width:160px; color:var(--muted)}
.col-price{width:170px; font-weight:700}

.priceRange{display:flex; gap:8px; align-items:center; justify-content:flex-start; flex-wrap:wrap}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}

.contact{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.contact__label{font-size:12px; color:var(--muted); margin-bottom:4px}
.contact__value{font-weight:700}

.small{margin:12px 0 0; font-size:12px; color:var(--muted)}
.muted{color:var(--muted)}

.empty{margin-top:12px; padding:18px; border-radius: var(--radius); border: 1px dashed rgba(255,255,255,.18); color:var(--muted)}
.empty__title{font-weight:700; color:var(--text); margin-bottom:6px}

.footer{border-top:1px solid var(--line); padding:18px 0; color:var(--muted)}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr;}
  .hero__title{font-size:34px}
  .toolbar{grid-template-columns: 1fr 1fr;}
  .grid{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .table{min-width:640px}
}

/* Floating order button */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,197,94,.75));
  color: rgba(255,255,255,.95);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.fab:hover{filter: brightness(1.05)}

@media (min-width: 980px){
  .fab{display:none}
}
