.shop-category-hero {
  position: relative;
  padding: 28px 0 14px;
}

.shop-category-hero__wrap {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 30px;
  background:
      linear-gradient(135deg, rgba(8, 13, 25, 0.96), rgba(11, 17, 30, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
      0 24px 70px rgba(0,0,0,0.34),
      inset 0 1px 0 rgba(255,255,255,0.04);
}

.shop-category-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.shop-category-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
}

.shop-category-hero__glow--one {
  top: -80px;
  right: -20px;
  width: 240px;
  height: 240px;
  background: rgba(37, 99, 235, 0.34);
}

.shop-category-hero__glow--two {
  bottom: -60px;
  left: 0;
  width: 220px;
  height: 220px;
  background: rgba(168, 85, 247, 0.28);
}

.shop-category-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-category-hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.8);
}

.shop-category-hero__title {
  margin: 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.shop-category-hero__text {
  max-width: 820px;
  margin: 20px 0 0;
  color: #cbd9ea;
  font-size: 18px;
  line-height: 1.9;
}

.shop-category-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 760px;
}

.shop-category-hero-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}

.shop-category-hero-stat__label {
  display: block;
  color: #8ea6c3;
  font-size: 13px;
  margin-bottom: 8px;
}

.shop-category-hero-stat__value {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.shop-category-hero__actions {
  margin-top: 24px;
}

.shop-category-section {
  padding: 12px 0 40px;
}

.shop-category-toolbar {
  margin-bottom: 18px;
}

.shop-products-grid--category {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-product-card--category .shop-product-card__text {
  min-height: 82px;
}

.shop-category-empty {
  padding: 38px;
  border-radius: 28px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.shop-category-empty__icon {
  margin-bottom: 14px;
  font-size: 34px;
  color: #93c5fd;
}

.shop-category-empty .btn {
  margin-top: 16px;
}

@media (max-width: 1200px) {
  .shop-products-grid--category {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .shop-category-hero__wrap {
      padding: 24px;
      border-radius: 24px;
  }

  .shop-category-hero__title {
      font-size: 40px;
  }

  .shop-category-hero__text {
      font-size: 16px;
  }

  .shop-category-hero__meta,
  .shop-products-grid--category {
      grid-template-columns: 1fr;
  }

  .shop-product-card--category .shop-product-card__text {
      min-height: 0;
  }
}
