header {
  background: var(--white);
  border-bottom: 1px solid #ddd;
  padding: 1rem;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

h1 {
  margin: 0.5rem 0 0;
  color: var(--primary-color);
}

.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.intro .text {
  flex: 2;
}

.intro .image {
  flex: 1;
}

.intro img {
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
}

.sheeting h2 {
  color: var(--accent-color);
  margin-top: 0;
}

.sheeting p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.categories h3 {
  margin-top: 2rem;
  color: var(--primary-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius);
}

.card p {
  font-weight: bold;
  font-size: 14px;
  color: var(--secondary-color);
}
