:root {
  --brand: #FF6A00;
  --brand-2: #FF3300;
  --text-color: #222;
  --bg-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: white;
  padding: 1rem;
  text-align: center;
}

#banner {
  width: 100%;
  height: 150px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1.2rem;
}

#filters {
  padding: 1rem;
  text-align: center;
}

#search {
  padding: 0.5rem;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

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

.product {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product img {
  max-width: 45%;
  height: auto;
  margin-bottom: 0.5rem;
}

.product h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product .price {
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 1rem;
}

button {
  background: var(--brand);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: var(--brand-2);
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
