.orders-container {
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
}

.orders-heading {
  font-weight: 700;
  margin-bottom: 2rem;
}

.orders-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #007bff;
  margin: 8px auto 0;
  border-radius: 2px;
}

.order-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.order-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.order-total {
  font-weight: 600;
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 600;
}

.product-qty {
  font-size: 0.85rem;
  color: #666;
}

.no-orders {
  text-align: center;
  color: #777;
  margin-top: 3rem;
}
