body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0; 
}

header {
  background: hsl(327, 85%, 10%);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.product {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: cover;
}

#cart-section, #contact {
  padding: 1rem;
}

button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #0056b3;
}
