.products-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
}
.products-hero .glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.products-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.products-hero .desc {
  color: var(--gray-400);
  font-size: 1.2rem;
  max-width: 40rem;
  margin: 1.5rem auto 0;
  position: relative;
  z-index: 1;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.category-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
}
.category-card:hover {
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(249,115,22,0.08);
  transform: translateY(-4px);
}
.category-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(249,115,22,0.15);
}
.category-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-card-img img {
  transform: scale(1.1);
}
.category-card-label {
  padding: 0.75rem 0.75rem;
  color: var(--gray-300);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.3;
  transition: color 0.3s;
}
.category-card:hover .category-card-label,
.category-card.active .category-card-label {
  color: var(--primary);
}

.product-category {
  padding: 4rem 0;
}
.product-category + .product-category {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.category-header {
  margin-bottom: 2.5rem;
}
.category-header .section-tag {
  margin-bottom: 0.5rem;
}
.category-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}
.category-header p {
  color: var(--gray-400);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
}

.product-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(249,115,22,0.06);
  transform: translateY(-4px);
}

.product-card .img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img {
  transform: scale(1.1);
}

.product-card .info {
  padding: 1rem 1.25rem;
}
.product-card .info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  font-family: 'Space Grotesk', sans-serif;
}

.products-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
  font-size: 1rem;
}
.products-empty svg {
  width: 48px;
  height: 48px;
  stroke: rgba(249,115,22,0.4);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
  .product-card .info {
    padding: 0.75rem 1rem;
  }
  .product-card .info h3 {
    font-size: 0.85rem;
  }
  .category-nav {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }
  .category-card-label {
    font-size: 0.7rem;
    padding: 0.5rem;
  }
}
