body {
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

h1, h2 {
  text-align: center;
  margin: 20px 0;
  color: #222;
}

/* --- Grid Layout --- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
  justify-content: center;
}

/* --- Card Style --- */
.product-card {
  flex: 1 1 300px;
  max-width: 320px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align text left */
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-info {
  text-align: left;
  width: 100%;
}

.product-info h3 {
  margin: 8px 0;
  font-size: 18px;
  color: #333;
}

.product-info p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #0056b3;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .product-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .product-card img {
    max-height: 100%;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-info p {
    font-size: 13px;
  }
}
