:root {
  --bg: #0b0b0f;
  --card-bg: linear-gradient(180deg, #111111, #1a1a1f);
  --glass: rgba(255,255,255,0.04);
  --accent: #f59e0b;
  --text: #f8fafc;
  --muted: #9ca3af;
  --radius: 16px;
}

body {
  margin:0;
  font-family:"Segoe UI","Noto Sans Arabic",system-ui;
  background: var(--bg);
  color: var(--text);
}

header.top {
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(6px);
  background: rgba(17,17,17,0.95);
  display:flex;
  justify-content:space-between;
  padding:12px 16px;
  align-items:center;
}

.brand .logo {
  width:50px;
  height:50px;
  border-radius:12px;
  background:var(--accent);
  color:#000;
  font-weight:800;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:18px;
}

.brand .title {
  font-size:16px;
  font-weight:700;
}

.brand .subtitle {
  font-size:12px;
  color:var(--muted);
}

.cards {
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:16px;
}

.card {
  display:flex;
  gap:12px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding:14px;
  align-items:center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: transform .28s ease, box-shadow .28s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.card .media {
  width:100px;
  height:100px;
  border-radius: var(--radius);
  background:var(--glass);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card .media img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.card .info .name {
  font-weight:800;
  font-size:15px;
}

.card .price {
  font-weight:900;
  background: linear-gradient(90deg,#f59e0b,#f97316);
  -webkit-background-clip:text;
  color:transparent;
  font-size:16px;
}

/* Basket drawer */
.basket {
  position:fixed;
  right:16px;
  bottom:16px;
  width:calc(100% - 32px);
  max-width:480px;
  z-index:60;
}

.basket .panel {
  background: var(--card-bg);
  border-radius:var(--radius);
  padding:12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  gap:12px;
}

.btn {
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  background: linear-gradient(90deg,#f59e0b,#f97316);
  border:none;
  color:#000;
  cursor:pointer;
}
