/* ============ 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: 700px;
}

.blog .page-hero__desc {
	margin: 0 auto;
}

.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;
  }
}


/* ==========================================================================
   Component: Post Hero
   Hero section for single blog posts (with optional featured image bg)
   ========================================================================== */

.post-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0;
}

.post-hero--gradient {
    padding: 64px 0 48px;
    min-height: 0;
    display: block;
}

.post-hero--has-image .post-hero__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.post-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.post-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(45, 13, 103, 0.92) 0%,
        rgba(69, 46, 134, 0.75) 45%,
        rgba(69, 46, 134, 0.35) 100%
    );
}

.post-hero__content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.post-hero--has-image .post-hero__content {
    color: #fff;
}

.post-hero--has-image .page-hero__title,
.post-hero--has-image .post-hero__title {
    color: #fff;
}

.post-hero--has-image .badge--hero {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.post-hero--has-image .post-hero__meta {
    color: rgba(255, 255, 255, 0.8);
}

.post-hero--gradient .page-hero__title {
    color: var(--purple-dark);
}