.featured-page-header {
  padding: 16px 16px 12px;
  text-align: center;
  background: linear-gradient(135deg, #fef3c7, #fff7ed);
  border-bottom: 2px solid #fde68a;
  margin-bottom: 20px;
}
.featured-page-header h1 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #92400e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featured-page-header h1 svg {
  width: 22px; height: 22px; fill: #f59e0b;
}
.featured-page-header p {
  margin: 0;
  font-size: 13px;
  color: #b45309;
}

/* شبكة المنتجات المميزة — نفس .product-grid */
.featured-products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .featured-page-header {
    margin-top: 10px;
  }

  .featured-products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .featured-page-header {
    margin-top: 10px;
  }

  .featured-products-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}