body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: white;
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px;
}

/* CARD */
.card {
  background: white;
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
}

.card img {
  width: 100%;
  height: auto;
}

.card h2 {
  margin: 10px 0;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #444;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.2s;
}

.btn:hover {
  background: #333;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
  margin-top: 40px;
}