.design-collection-archive {
  font-family: sans-serif;
}

.dc-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: #fff;
	background-position: center center;
  background-size: contain;
	background-repeat: no-repeat;
	background-size:cover; 
	background-position:top center;
}

.dc-featured-banner {
  background: #111;
  color: #f5f5f5;
  text-align: center;
  padding: 2rem;
}

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

.dc-product-card {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dc-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #fafafa;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}