body {
  font-family: Arial;
  margin: 0;
}

header {
  background: green;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
}

section {
  padding: 40px;
  text-align: center;
}

button {
  padding: 10px 20px;
  background: #25D366;
  color: white;
  font-weight:bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.card {
  width: 250px;              /* size reduce */
  margin: 10px auto;         /* center align */
  padding: 15px;             /* less space */
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;   /* spacing between cards */
}
#products h2 {
  width: 100%;
}
body {
  background-color: #f8f9fa;
}
h2 {
  margin-bottom: 20px;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.card {
    padding: 15px;
}
body {
    background-color: #f5f7fa;
}
.card {
    margin: 10px;
}
