<!-- css/styles.css -->
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}
.site-header {
  background: #fff;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.primary-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.primary-nav a { text-decoration: none; color: #333; }
.logo img {
  max-height: 8vh;
  width: auto;
}
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background: #f9f9f9;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem;
}
.btn.primary { background: #007BFF; color: #fff; }
.btn.secondary { background: #6c757d; color: #fff; }
.features { padding: 2rem 1rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature img { width: 50px; }
.product-highlight {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.product-thumb {
  width: 30%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}
.cta {
  padding: 2rem 1rem;
  background: #e9ecef;
  text-align: center;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #f1f1f1;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .primary-nav ul { flex-direction: column; }
  .hero h1 { font-size: 1.5rem; }
  .product-thumb { width: 45%; }
}
