/* Dark-Grid — lallista.com (sense frameworks) */
:root{
  --bg:#050814;
  --fg:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.14);
  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.03);
  --shadow: rgba(0,0,0,.35);
  --r:18px;
  --r2:16px;
  --pad:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(34,197,94,.22), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(124,58,237,.26), transparent 55%),
    var(--bg);
  color:var(--fg);
}

a{color:inherit}
.dg-container{max-width:1200px;margin:0 auto;padding:0 22px}
.dg-nav{
  position:sticky;top:0;z-index:50;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
}
.dg-nav-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;padding:16px 0}
.dg-brand{display:flex;gap:12px;align-items:center;text-decoration:none}
.dg-mark{width:34px;height:34px;border-radius:12px;background:linear-gradient(135deg,#22c55e,#7c3aed)}
.dg-name{font-weight:950;letter-spacing:.2px}
.dg-links{display:flex;gap:12px;flex-wrap:wrap}
.dg-links a{opacity:.75;text-decoration:none;font-weight:700}
.dg-links a:hover{opacity:1;text-decoration:underline}
.dg-nav-cta{display:flex;gap:10px;flex-wrap:wrap}
.dg-chip{
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border2);
  background: rgba(255,255,255,.04);
  text-decoration:none;
}
.dg-chip:hover{background:rgba(255,255,255,.07)}

.dg-hero{padding:26px 0 8px}
.dg-hero h1{margin:0 0 10px;font-size:36px;line-height:1.05;font-weight:980}
.dg-hero p{margin:0;max-width:72ch;color:var(--muted)}
.dg-controls{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.dg-search{
  flex:1;min-width:240px;
  display:flex;gap:8px;align-items:center;
  padding:12px 14px;border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.dg-search input{border:0;outline:0;background:transparent;color:#fff;width:100%}
.dg-btn{
  padding:12px 14px;border-radius:var(--r2);
  border:1px solid var(--border2);
  background: linear-gradient(135deg, rgba(124,58,237,.55), rgba(34,197,94,.45));
  color:#fff;font-weight:850;cursor:pointer;
  text-decoration:none;display:inline-flex;align-items:center;justify-content:center
}
.dg-btn:hover{filter:brightness(1.06)}
.dg-btn-soft{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
}

.dg-grid{padding:0 0 26px;display:grid;grid-template-columns: 1.2fr .8fr;gap:16px}
.dg-panel{
  border-radius:var(--r);
  padding:var(--pad);
  background: var(--card);
  border:1px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow);
}
.dg-panel h2,.dg-panel h3{margin:0 0 10px}
.dg-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.dg-card{
  border-radius:var(--r);
  padding:14px;
  border:1px solid var(--border);
  background: var(--card2);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.dg-card:hover{transform:translateY(-2px);background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.18)}
.dg-card h3{margin:0 0 6px;font-size:15px}
.dg-card p{margin:0;color:var(--muted);font-size:13px}
.dg-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.dg-badge{font-size:12px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10)}
.dg-row{display:flex;gap:10px;align-items:flex-start;padding:10px;border-radius:14px;border:1px solid var(--border);background:rgba(255,255,255,.03)}
.dg-ico{width:34px;height:34px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid var(--border)}

.dg-list{display:grid;gap:12px}
.dg-item{
  display:flex;gap:12px;align-items:flex-start;
  padding:12px;border-radius:var(--r);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  text-decoration:none;
}
.dg-thumb{
  width:86px;height:86px;border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  overflow:hidden;flex:0 0 auto;
  display:grid;place-items:center;
}
.dg-thumb img{width:100%;height:100%;object-fit:cover}
.dg-item strong{display:block}
.dg-item .dg-small{color:var(--muted);font-size:13px}
.dg-price{margin-top:6px;font-weight:900}
.dg-divider{height:1px;background:rgba(255,255,255,.08);margin:12px 0}

.dg-footer{border-top:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.68)}
.dg-footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:16px 0}
.dg-footer-links{display:flex;gap:14px;flex-wrap:wrap}
.dg-footer-links a{opacity:.8;text-decoration:none}
.dg-footer-links a:hover{opacity:1;text-decoration:underline}

.dg-form{display:grid;gap:10px}
.dg-input, .dg-textarea, .dg-select{
  width:100%;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
}
.dg-textarea{min-height:120px;resize:vertical}
.dg-help{font-size:12px;color:rgba(255,255,255,.65)}

.dg-cookie{position:fixed;left:14px;right:14px;bottom:14px;z-index:999}
.dg-cookie.is-hidden{display:none}
.dg-cookie-card{
  max-width:980px;margin:0 auto;
  border-radius:18px;
  background: rgba(5,8,20,.92);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.5);
  padding:14px 14px 12px;
}
.dg-cookie-title{font-weight:950;margin-bottom:6px}
.dg-cookie-text{color:rgba(255,255,255,.76);font-size:13px}
.dg-cookie-text a{color:#fff}
.dg-cookie-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

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