
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.product-card {
  width: 225px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 5px;
}

.product-card h3 {
  font-size: 1.1em;
}

.price-button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-button-row p {
  font-weight: bold;
  margin: 0;
}

.price-button-row button {
  background-color: blue;
  color: white;
  border: none;
  font-size: 0.9em;
  border-radius: 4px;
  cursor: pointer;
}


/* Small screens view (max-width: 768px) */
@media (max-width: 768px) {
    .product-card { 
        width: 300px;
    }
}