
:root {
  --ms-primary: #ff7f00; /* orange */
  --ms-secondary: #ffffff; /* white */
  --ms-accent: #000000; /* black footer */
  --ms-ink: #333333;
  --ms-bg: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--ms-bg);
  color: var(--ms-ink);
  margin: 0;
  padding: 0;
}

header {
  background: var(--ms-primary);
  color: var(--ms-secondary);
  padding: 1rem;
  text-align: center;
}

footer {
  background: var(--ms-accent);
  color: var(--ms-secondary);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.product {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
}

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

button {
  background: var(--ms-primary);
  color: var(--ms-secondary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background: #e66d00;
}
