.blog-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.blog-banner img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}

.blog-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.blog-tags {
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}

.blog-tags .tag {
  background: #f0f0f0;
  padding: 5px 10px;
  margin-right: 6px;
  border-radius: 6px;
  display: inline-block;
}

.related-products {
  margin-top: 40px;
}

.related-products h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.related-products ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
}

.related-products li {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  background: #fafafa;
  transition: box-shadow 0.3s;
}

.related-products li:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.related-products img {
  max-width: 100%;
  border-radius: 6px;
  height: 120px;
  object-fit: cover;
}

.related-products p {
  margin: 10px 0 5px;
  font-weight: 600;
  font-size: 16px;
}

.related-products span {
  color: #27ae60;
  font-weight: bold;
}
