/* ═══════════════════════════════════════════════════════════
   BRAND PAGE — CATEGORY ACCORDION
   ═══════════════════════════════════════════════════════════ */
.sh-brand-cat-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--sh-gray-200, #e2e8f0);
    border-radius: 0;
}

.sh-brand-cat-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    color: var(--sh-navy, #0f2647);
    font-size: 18px;
    padding: 20px 4px;
}

.sh-brand-cat-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--sh-navy, #0f2647);
}

.sh-brand-cat-accordion .accordion-button:focus {
    box-shadow: none;
}

.sh-brand-cat-accordion__count {
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

.sh-brand-cat-accordion .accordion-body {
    padding: 8px 4px 28px;
}

/* ═══════════════════════════════════════════════════════════
   HORIZONTAL PRODUCT LIST  (category page – ICU-style)
   ═══════════════════════════════════════════════════════════ */
.sh-prod-hlist {
    display: flex;
    flex-direction: column;
    /* border-radius: 12px; */
    overflow: hidden;
    gap: 16px;
}

.sh-prod-hlist-item {
    display: flex;
    align-items: stretch;
    background: rgb(242, 242, 242);
    position: relative;
    transition: box-shadow .25s, transform .2s;
    min-height: 280px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.sh-prod-hlist-item:hover {
    box-shadow: 0 6px 28px rgba(10, 35, 66, .13);
    transform: translateY(-2px);
}

.sh-prod-hlist-item__body {
    flex: 1;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.sh-prod-hlist-item__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--sh-navy);
    margin: 0;
    line-height: 1.3;
}

.sh-prod-hlist-item__desc {
    font-size: 14px;
    color: var(--sh-gray-600);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 520px;
}

.sh-prod-hlist-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--sh-cyan);
    margin-top: 6px;
    transition: gap .2s;
}

.sh-prod-hlist-item:hover .sh-prod-hlist-item__cta {
    gap: 10px;
}

.sh-prod-hlist-item__img-wrap {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.sh-prod-hlist-item__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    transition: transform .4s ease;
}

.sh-prod-hlist-item:hover .sh-prod-hlist-item__img {
    transform: scale(1.04);
}

.sh-prod-hlist-item__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .sh-prod-hlist-item {
        flex-direction: column;
        min-height: auto;
    }

    .sh-prod-hlist-item__img-wrap {
        flex: 0 0 220px;
        width: 100%;
        min-height: 220px;
        position: relative;
    }

    .sh-prod-hlist-item__body {
        padding: 24px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   STICKY BOTTOM CTA BAR  (product detail page)
   ═══════════════════════════════════════════════════════════ */
.sh-sticky-cta-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--sh-gray-200);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 120;
    box-shadow: 0 -6px 24px rgba(10, 35, 66, .1);
}

.sh-sticky-cta-bar__product {
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-navy);
    margin-right: auto;
}

@media (max-width: 575px) {
    .sh-sticky-cta-bar {
        padding: 12px 16px;
    }

    .sh-sticky-cta-bar__product {
        display: none;
    }
}

/* ── Phone: hold the three CTAs on one row ──
   At the base 13px/30px padding and 14px text the buttons need ~500px,
   so flex-wrap dropped each onto its own line. Shrink them and let them
   share the width equally instead. */
@media (max-width: 767.98px) {
    .sh-sticky-cta-bar {
        flex-wrap: nowrap;
        gap: 6px;
        padding: 10px 8px;
    }

    .sh-sticky-cta-bar__product {
        display: none;
    }

    .sh-sticky-cta-bar .sh-btn {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
        white-space: nowrap;
        font-size: 11px;
        letter-spacing: 0;
        padding: 9px 4px;
        gap: 4px;
        border-width: 1px;
    }

    /* Bootstrap's me-1 on the icons adds margin we no longer have room for. */
    .sh-sticky-cta-bar .sh-btn i {
        font-size: 11px;
        margin-right: 0 !important;
    }
}

/* Narrow phones (<=375px): "Download Brochure" no longer fits alongside an
   icon, so the icons give way rather than the labels. Above this the icons
   still fit, so they stay. */
@media (max-width: 375px) {
    .sh-sticky-cta-bar .sh-btn {
        font-size: 10px;
        padding: 9px 2px;
        gap: 0;
    }

    .sh-sticky-cta-bar .sh-btn i {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   GET SUPPORT SECTION
   ═══════════════════════════════════════════════════════════ */
.sh-support-section {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sh-support-section__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sh-support-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sh-support-section__content {
    left: 150px;
    position: relative;
    z-index: 1;
    padding: 60px 56px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
}

.sh-support-section__title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--sh-navy);
    line-height: 1.25;
    margin: 0;
}

.sh-support-section__text {
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 767px) {
    .sh-support-section {
        min-height: 360px;
    }

    .sh-support-section__content {
        left: 0;
        padding: 40px 28px;
        max-width: 100%;
        background: rgba(238, 245, 255, 0.88);
        border-radius: 12px;
        margin: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   PROTECTING LIVES HERO BANNER
   ═══════════════════════════════════════════════════════════ */
.sh-protecting-lives {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sh-protecting-lives__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(.45);
}

.sh-protecting-lives__content {
    position: relative;
    z-index: 2;
    padding: 70px 80px;
    max-width: 640px;
    color: #fff;
}

.sh-protecting-lives__title {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.sh-protecting-lives__text {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .sh-protecting-lives__content {
        padding: 48px 28px;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER / SIGN-UP SECTION
   ═══════════════════════════════════════════════════════════ */
.sh-newsletter-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sh-newsletter-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sh-newsletter-section__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.92) 35%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0) 80%);
    z-index: 1;
    pointer-events: none;
}

.sh-newsletter-section__content {
    left: 150px;
    position: relative;
    z-index: 2;
    padding: 60px 72px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sh-newsletter-section__title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--sh-navy);
    margin: 0;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .sh-newsletter-section__content {
        left: 0;
        padding: 40px 28px;
        max-width: 100%;
        background: rgba(255,255,255,.88);
        border-radius: 12px;
        margin: 24px;
    }
    .sh-newsletter-section__fade { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   QUALITY BENEFITS ROW
   ═══════════════════════════════════════════════════════════ */
.sh-quality-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    border-top: 1px solid var(--sh-gray-200);
    padding-top: 32px;
    margin-top: 24px;
}

.sh-quality-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--sh-gray-50);
    border-radius: 10px;
}

.sh-quality-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sh-cyan) 0%, var(--sh-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 169, 206, .3);
}

.sh-quality-benefit__icon i {
    color: #fff;
    font-size: 18px;
}

.sh-quality-benefit__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-navy);
    line-height: 1.4;
}

@media (max-width: 575px) {
    .sh-quality-benefits {
        grid-template-columns: 1fr;
    }
}

.sh-ui-error-region {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(420px, calc(100vw - 32px));
}

.sh-ui-error {
    display: grid;
    grid-template-columns: 36px 1fr 30px;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    background: #fff;
    color: var(--sh-navy);
    border: 1px solid #f0b7b7;
    border-left: 5px solid #d83a3a;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(26, 46, 74, .16);
}

.sh-ui-error__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d83a3a;
    background: #fff0f0;
}

.sh-ui-error__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sh-ui-error__body strong {
    font-size: 14px;
    line-height: 1.25;
}

.sh-ui-error__body span,
.sh-ui-error__body small {
    font-size: 13px;
    line-height: 1.45;
    color: var(--sh-gray-700);
    overflow-wrap: anywhere;
}

.sh-ui-error__close {
    border: 0;
    background: transparent;
    color: var(--sh-gray-600);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sh-section-error {
    padding: 18px 20px;
    border: 1px solid #f0b7b7;
    border-left: 5px solid #d83a3a;
    border-radius: 8px;
    background: #fff;
    color: var(--sh-navy);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sh-section-error span {
    color: var(--sh-gray-700);
}

@media (max-width: 575px) {
    .sh-ui-error-region {
        top: 12px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}
