body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f3f3f3;
  color: #333;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.hero {
  background: #8b0000;
  color: #fff;
  padding: 50px 20px;
  border-radius: 10px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.section-heading {
  text-align: center;
  margin-top: 40px;
  font-size: 1.8em;
  color: #8b0000;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.category-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  text-decoration: none;
  font-size: 1.1em;
  color: #8b0000;
  transition: all 0.3s ease;
}
.category-card:hover {
  background: #8b0000;
  color: white;
  border-color: #8b0000;
}
.seo-blurb {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 50px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
footer {
  text-align: center;
  padding: 30px 0;
  color: #666;
  font-size: 0.9em;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.product-card h3 {
  font-size: 1.1em;
  margin: 10px 0;
}
.product-card p {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 12px;
}
.product-card a {
  display: inline-block;
  background: #8b0000;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.product-card a:hover {
  background: #a40000;
}
.price {
  color: #8b0000;
  font-weight: bold;
  margin: 8px 0;
}
