/* Wish Favors category/navigation polish */
.primary-nav a.active {
  color: var(--pink-dark, #b83265);
  background: #fff3f8;
  border-radius: 999px;
  padding: 9px 12px;
}

.category-hero-polish .hero-copy {
  max-width: 700px;
}

.center-actions {
  text-align: center;
  margin-top: 22px;
}

.compact-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.shop-hero-v4,
.category-title-panel,
.empty-category-panel {
  background: linear-gradient(135deg, #fff7fb, #fffaf2);
  border: 1px solid var(--line, #eadde3);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow, 0 18px 45px rgba(93,45,65,.08));
  margin-bottom: 28px;
}

.shop-hero-v4 h1,
.category-title-panel h1 {
  margin-bottom: 12px;
}

.shop-hero-v4 p,
.category-title-panel p,
.empty-category-panel p {
  color: var(--muted, #6b5d64);
  max-width: 760px;
}

.category-grid-v4 .category-card-v4,
.all-category-grid .category-tile {
  position: relative;
  overflow: hidden;
}

.category-grid-v4 .category-card-v4::after,
.all-category-grid .category-tile::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 216, 231, .45);
  right: -46px;
  bottom: -52px;
}

.all-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  gap: 10px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line, #eadde3);
  border-radius: 24px;
  box-shadow: var(--shadow, 0 18px 45px rgba(93,45,65,.08));
  text-decoration: none;
}

.category-tile > span {
  font-size: 34px;
  line-height: 1;
}

.category-tile strong {
  color: var(--ink, #151922);
  font-size: 18px;
  line-height: 1.15;
}

.category-tile small {
  color: var(--muted, #6b5d64);
  line-height: 1.45;
}

.category-tile:hover,
.category-card-v4:hover,
.product-card-v4:hover {
  transform: translateY(-2px);
}

.category-page-v4 .product-grid,
.shop-page-v4 .product-grid {
  margin-top: 16px;
}

.product-card-v4 {
  min-height: 100%;
}

.product-img-v4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 190px;
  background: radial-gradient(circle at 30% 20%, #fff, #fff0f6 45%, #f8dde8 100%);
}

.product-img-v4 span {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line, #eadde3);
  color: var(--pink-dark, #b83265);
  font-weight: 1000;
  font-size: 26px;
  box-shadow: 0 14px 30px rgba(93,45,65,.08);
}

.product-img-v4 small {
  color: var(--muted, #6b5d64);
  font-weight: 850;
}

.empty-category-panel .btn {
  margin-right: 8px;
  margin-top: 10px;
}

@media (max-width: 1120px) {
  .all-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .all-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-v4,
  .category-title-panel,
  .empty-category-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .primary-nav a.active {
    padding: 0;
    background: transparent;
  }
}
