.products-page {
  padding: 70px 8%;
  text-align: center;
}

.products-page h1 {
  font-size: 45px;
  color: #ffdd77;
  margin-bottom: 40px;
}

.featured-products {
  margin-bottom: 80px;
}

.featured-products p {
  margin-bottom: 35px;
  font-size: 18px;
}

.all-candles {
  margin-top: 80px;
}

.all-candles h2 {
  font-size: 38px;
  color: #ffdd77;
  margin-bottom: 30px;
}

.description-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: auto;
}

.desc-card {
  background: #1f1029;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(255, 221, 119, 0.25);
}

.desc-card h3 {
  color: #ffdd77;
  margin-bottom: 10px;
}

.desc-card p {
  color: #ddd;
}