/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(166deg, #eae6ff 0%, #d4fbfc 50%, #ffebe8 100%);
  padding: 64px 0 80px;
}

/* Gradient presets */
.page-hero--green-blue {
  background: linear-gradient(166deg, #d3f9e3 0%, #dffcfd 50%, #f4f1ff 100%);
}

.page-hero--purple-pink {
  background: linear-gradient(166deg, #eae6ff 0%, #d4fbfc 50%, #ffebe8 100%);
}

.page-hero--orange-peach {
  background: linear-gradient(168deg, #ffe3c4 0%, #dcfbe9 50%, #f4f2ff 100%);
}

.page-hero--cyan-blue {
  background: linear-gradient(168deg, #caf2ff 0%, #f1eeff 50%, #ffeeeb 100%);
}

.page-hero--purple-teal-green {
  background: linear-gradient(167deg, #eae6ff 0%, #d4fbfc 50%, #dffee4 100%);
}

.page-hero--purple-teal-orange {
  background: linear-gradient(169deg, #edebff 0%, #dffcfd 50%, #fff0db 100%);
}

.page-hero--pink-blue-cyan {
  background: linear-gradient(168deg, #ffdfda 0%, #f1eeff 50%, #e5fcee 100%);
}

.page-hero--purple-cyan-peach {
  background: linear-gradient(169deg, #edebff 0%, #dffcfd 50%, #dffee4 100%);
}

.page-hero--purple-pink-cyan {
  background: linear-gradient(168deg, #eae6ff 0%, #faebff 50%, #e2faff 100%);
}

.page-hero--orange-green-purple {
  background: linear-gradient(168deg, #d3f9e3 0%, #fff1e1 50%, #ffebe8 100%);
}

.tax-product_cat .page-hero .container{
  text-align: start!important;
}

.page-hero__breadcrumb {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13.1px;
  color: #5b5b74;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__breadcrumb a {
  color: #5b5b74;
}

.page-hero__breadcrumb a:hover {
  color: var(--purple-dark);
}

.page-hero__breadcrumb-current {
  color: var(--purple-dark);
}

.page-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.page-hero .badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11.2px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-bottom: 16px;
  background: var(--red-light);
  color: #a20519;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.25;
  color: var(--purple-dark);
  margin-bottom: 20px;
}

.page-hero__title span {
  color: var(--red-btn, var(--red));
}

.page-hero__desc {
  font-size: 16.8px;
  line-height: 1.625;
  color: #4a4a62;
  margin-bottom: 32px;
  max-width: 580px;
}

.page-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero__pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.1px;
  color: var(--purple-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: 32px;
  }

  .page-hero__desc {
    font-size: 15px;
  }
}

@media (max-width: 460px) {
  .page-hero {
    padding: 40px 0 56px;
  }

  .page-hero__title {
    font-size: 26px;
  }

  .page-hero__pills {
    flex-direction: column;
  }
}
