:root{
  --bg:#0b0f14; --card:#10151d; --muted:#94a3b8; --text:#e5ecf6; --line:#1f2a37;
  --pri:#22c55e; --pri-2:#16a34a; --danger:#ef4444;
  --radius:14px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; background:var(--bg); color:var(--text); font:14px/1.6 system-ui,Segoe UI,Roboto,Arial;
}
a{color:#cbe3ff; text-decoration:none}
.container{width:min(1200px,92vw); margin-inline:auto}
.row{display:flex; gap:10px; align-items:center}
.row.space{justify-content:space-between}
.muted{color:var(--muted)}
.btn{background:var(--pri); color:#081015; border:none; padding:10px 14px; border-radius:10px; cursor:pointer; font-weight:700}
.btn:hover{background:var(--pri-2)}
.btn.small{padding:6px 10px; font-weight:600}
.btn.danger{background:var(--danger); color:white}
.badge{display:inline-block; min-width:18px; padding:2px 6px; background:#1e293b; border-radius:999px; text-align:center}

.site-header{position:sticky;top:0;z-index:20;background:rgba(8,12,18,.75);backdrop-filter:saturate(120%) blur(6px);border-bottom:1px solid var(--line)}
.site-header .brand{display:flex;gap:10px;align-items:center;color:#e5ecf6;font-weight:800}
.site-header .brand img{height:18px}
.site-header .links{display:flex;gap:16px;align-items:center}

.site-footer{margin-top:40px;border-top:1px solid var(--line);padding:24px 0;background:#0e131a}
.site-footer .title{font-weight:800;margin-bottom:6px}
.brand-mini{display:flex;gap:8px;align-items:center;margin-bottom:8px}
.brand-mini img{height:16px}

.grid{display:grid; gap:16px}
.grid.cols-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.grid.cols-2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

.card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:16px; box-shadow:0 4px 24px rgba(0,0,0,.2)
}

.page-title{display:flex;align-items:center;gap:10px;font-size:28px;font-weight:900;margin:18px 0}

.products{display:grid;gap:18px;grid-template-columns:repeat(5, minmax(0,1fr))}
@media (max-width:1350px){.products{grid-template-columns:repeat(4,1fr)}}
@media (max-width:1100px){.products{grid-template-columns:repeat(3,1fr)}}
@media (max-width:800px){.products{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.products{grid-template-columns:repeat(1,1fr)}}

.pcard{display:flex;flex-direction:column;gap:10px;padding:14px}
.pcard .pimg{
  background:#0a0e13;border:1px solid var(--line);border-radius:12px;
  height:210px; overflow:hidden; display:flex;align-items:center;justify-content:center
}
.pcard .pimg img{
  width:100%; height:100%; object-fit:contain;
  image-rendering:auto; /* yüksek DPI'da net */
}
.pcard .sku{color:var(--muted); font-size:12px}
.pcard .price{font-size:18px;font-weight:900}
.qty{display:flex;align-items:center;gap:8px}
.qty input{
  width:56px; text-align:center; background:#0e131a; border:1px solid var(--line); color:var(--text);
  height:34px; border-radius:8px
}
.iconbtn{
  width:34px;height:34px;border-radius:8px;border:1px solid var(--line);
  background:#14202c;color:#cfe9d8;font-weight:900;cursor:pointer
}
.iconbtn:active{transform:translateY(1px)}
.meta{color:var(--muted); font-size:12px}

table{width:100%; border-collapse:collapse}
th,td{padding:10px;border-bottom:1px solid var(--line);vertical-align:middle}
.thumb img{width:100%;height:100%;object-fit:cover}
