/* Inner page hero — matches site h1 band (ddscss global h1); supports breadcrumbs */
.page-hero-wrap {
    width: 100%;
}

.page-hero-wrap .page-hero-band {
    width: 100%;
    min-height: 176px;
    height: auto;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.25;
    font-family: "poppins-bold", "Work Sans", sans-serif;
    background-image: url(../images/heading-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.page-hero-wrap .page-hero-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(37, 83, 142, 0.66);
    z-index: 0;
}

.page-hero-wrap .page-hero-band .container {
    position: relative;
    z-index: 1;
    min-height: 176px;
}

.page-hero-band__title {
    display: block;
    width: 100%;
    font-size: inherit;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .page-hero-wrap .page-hero-band {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-hero-wrap .page-hero-band {
        font-size: 1.75rem;
    }

    .page-hero-wrap .page-hero-band .container {
        min-height: 160px;
    }
}

.page-hero-band__crumb {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: normal;
    font-family: "Nunito", sans-serif;
}

.page-hero-band__crumb .breadcrumb-item {
    font-size: inherit;
    font-weight: inherit;
}

.page-hero-band__crumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.65);
}

.page-hero-band__crumb .breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.page-hero-band__crumb .breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-hero-band__crumb .breadcrumb .active {
    color: rgba(255, 255, 255, 0.88);
}

.catalog-highlight-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    max-width: calc(100% - 1.7rem);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #25538e;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(37, 83, 142, 0.12);
    box-shadow: 0 2px 8px rgba(37, 83, 142, 0.08);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Equal-height catalog cards (category hub + product list) */
.catalog-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.catalog-cards-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.catalog-cards-row > [class*="col-"] > .hub-category-card,
.catalog-cards-row > [class*="col-"] > .product-list-card {
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
}

.catalog-card__text {
    flex: 1 1 auto;
    min-height: 3.1rem;
}

.catalog-card__text .hub-category-card__excerpt,
.catalog-card__text .product-list-card__excerpt {
    margin: 0;
}

/* Product detail highlight pills */
.product-detail-panel__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail-panel__highlight {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #25538e;
    background: rgba(37, 83, 142, 0.08);
    border: 1px solid rgba(37, 83, 142, 0.15);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
}

.product-detail-panel__highlight--product {
    color: #087762;
    background: rgba(8, 119, 98, 0.1);
    border-color: rgba(8, 119, 98, 0.22);
}

.product-detail-panel__range {
    font-size: 0.875rem;
    line-height: 1.4;
}

.product-detail-panel__range a {
    color: rgba(20, 17, 21, 0.65);
    text-decoration: none;
}

.product-detail-panel__range a:hover {
    color: #087762;
    text-decoration: underline;
}

/* Product detail: offset sticky gallery when site header is fixed */
@media (min-width: 992px) {
    body.site-header-is-scrolled .product-detail-page .product-detail-visual {
        top: calc(var(--site-header-height, 88px) + 1rem);
    }
}
