body {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

header, footer {
  background: #222;
  padding: 20px;
  text-align: center;
}

nav a {
  color: #cd5c5c;
  text-decoration: none;
  margin: 0 10px;
}

main {
  padding: 20px;
  text-align: center;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center; /* Add this line */
  margin-top: 30px;
}

.product-card {
  background: #1a1a1a;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  padding: 24px;
  width: 280px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}

.product-card h3 {
  color: #e9967a;
  margin: 0 0 8px 0;
}

.product-card p {
  margin: 0 0 12px 0;
  color: #bbb;
}

.product-card .buy-button {
  display: inline-block;
  background: #a52a2a;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  margin-top: 8px;
}

.product-card .buy-button:hover {
  background: #ff6b6b;
  transform: scale(1.05);
}

h1 {
  font-size: 2.5em;
  color: #b22222;
  margin-bottom: 10px;
}

h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #e9967a;
}

footer p {
  font-size: 0.9em;
  color: #bbb;
}