body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #222;
  color: white;
}

.order-button {
  background-color: #d32f2f;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.order-button:hover {
  background-color: #b71c1c;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.product-card {
  background-color: #000;
  color: #fff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}
.product-card {
  position: relative;
  background-color: #111;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* NEW label style */
.new-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}