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

/* Under transparent header on inner pages (careers, news, gallery) */
body.site-front.site-front--inner-page .page-hero-wrap .page-hero-band {
    padding-top: var(--site-header-height, 76px);
    box-sizing: border-box;
}

body.site-front.site-front--inner-page .page-hero-wrap .page-hero-band::after {
    background-color: rgba(6, 36, 51, 0.45);
}

.page-hero-wrap .page-hero-band {
    width: 100%;
    height: var(--front-banner-height, clamp(320px, 42vw, 480px));
    min-height: var(--front-banner-height, clamp(320px, 42vw, 480px));
    max-height: var(--front-banner-height, clamp(320px, 42vw, 480px));
    display: flex;
    flex-direction: column;
    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/inner-banner.jpg);
    background-position: center 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(6, 36, 51, 0.35);
    z-index: 0;
}

.page-hero-wrap .page-hero-band .container {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

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

.page-hero-band__description {
    display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    max-width: 42rem;
    opacity: 0.95;
}

@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-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: #062433;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(6, 36, 51, 0.12);
    box-shadow: 0 2px 8px rgba(6, 36, 51, 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: #062433;
    background: rgba(6, 36, 51, 0.08);
    border: 1px solid rgba(6, 36, 51, 0.15);
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
}

.product-detail-panel__highlight--product {
    color: #21a09e;
    background: rgba(33, 160, 158, 0.1);
    border-color: rgba(33, 160, 158, 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: #21a09e;
    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);
    }
}
