/* Products page glam styling */

.products-hero-glam {
  background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.products-hero-glam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(212,165,116,0.14), transparent 42%),
              radial-gradient(circle at 80% 60%, rgba(26,26,26,0.08), transparent 38%);
  pointer-events: none;
}

.products-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.products-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.products-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}

.products-hero-subtitle {
  color: var(--text-medium);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(26,26,26,0.04);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.products-hero-image {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #ece7df 0%, #ffffff 100%);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
  min-height: 320px;
}

.products-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-shell-glam {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
}

.filter-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.filter-pill {
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-pill.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.filter-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.products-grid-glam {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* Minor tweaks to shared glam product card */
.product-card-glam {
  border: 1px solid rgba(0,0,0,0.05);
  min-height: 100%;
}

.product-card-info {
  padding: 1.1rem 1.25rem 1.35rem;
}

.product-card-desc {
  min-height: 46px;
}

@media (max-width: 1024px) {
  .products-hero-inner { grid-template-columns: 1fr; }
  .products-hero-image { min-height: 260px; }
}

@media (max-width: 640px) {
  .products-shell-glam { padding: 2.5rem 1.1rem; }
  .products-grid-glam { gap: 1.1rem; }
}
