body {
  font-family: "Vazirmatn", sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
}
header, footer {
  background: #000;
  padding: 15px;
  text-align: center;
}
.main-header {
  color: #f5c518;
}
nav a {
  color: #f5c518;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
.user-icon {
  position: absolute;
  top: 20px;
  right: 70px;
  font-size: 26px;
  color: #f5c518;
  cursor: pointer;
  display: none;
}
.username {
  position: absolute;
  top: 55px;
  right: 70px;
  font-size: 14px;
  color: #b49911;
  display: none;
}
#cart-items {
  max-width: 800px;
  margin: 20px auto;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 15px;
  position: relative;
}
.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.btn-delete {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  background: #ff4444;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
}
.btn-delete:hover { background: #ff0000; }
.cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  max-width: 800px;
  margin: 20px auto;
}
.cart-btn {
  background: #f5c518;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #111;
  font-size: 15px;
}