/* ============================================================
   BAM HOMEPAGE SECTIONS — ported & redesigned from reference.
   All selectors scoped under .bh (homepage content wrapper).
   Loaded only on the homepage via index.blade.php @section('css').
   ============================================================ */
/* ===== foundation ===== */
.bh {
    --bh-primary: #2E661A;
    --bh-primary-light: #3D7E25;
    --bh-accent: #2E8B22;
    --bh-gold: #EFA106;
    --bh-dark: #021E27;
    --bh-text: #2A4046;
    --bh-text-light: #627C84;
    --bh-bg: #FAFBF9;
    --bh-bg-alt: #F4F7F2;
    --bh-border: #E4E9E2;
    --bh-white: #fff;
    --bh-radius-sm: 8px;
    --bh-radius-md: 12px;
    --bh-radius-lg: 20px;
    --bh-shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
    --bh-shadow-md: 0 8px 24px rgba(0, 0, 0, .06);
    --bh-shadow-lg: 0 16px 48px rgba(0, 0, 0, .1);
    --bh-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2A4046
}

.bh * {
    box-sizing: border-box
}

.bh h1,
.bh h2,
.bh h3,
.bh h4,
.bh h5,
.bh h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    color: #021E27;
    font-weight: 700;
    line-height: 1.25
}

.bh img {
    max-width: 100%;
    height: auto;
    display: block
}

.bh-section {
    padding: 80px 0
}

.bh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%
}

.bh-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px
}

.bh-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #021E27;
    margin: 0 0 14px
}

.bh-head p {
    font-size: 16px;
    color: #627C84;
    margin: 0
}

.bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    border: none;
    font-family: inherit
}

.bh-btn--primary {
    background: #2E8B22;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.bh-btn--primary:hover {
    background: #2E661A;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 34, .15)
}

.bh-btn--outline {
    background: transparent;
    border: 2px solid #C5DBBD;
    color: #021E27
}

.bh-btn--outline:hover {
    border-color: #2E8B22;
    color: #2E8B22;
    background: #F4F7F2;
    transform: translateY(-2px)
}

.bh-btn:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px
}

.bh-card {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

@media (max-width:767px) {
    .bh-section {
        padding: 50px 0
    }

    .bh-head h2 {
        font-size: 28px
    }
}

/* ===== seo-intro ===== */
.bh .bh-seo-intro {
    background: #fff;
    border-bottom: 1px solid #E4E9E2;
}

.bh .bh-seo-intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bh .bh-seo-intro__grid h2 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 38px;
    color: #2E661A;
    margin-bottom: 20px;
}

.bh .bh-seo-intro__grid p {
    font-size: 16px;
    color: #627C84;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .bh .bh-seo-intro__grid h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .bh .bh-seo-intro__grid h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .bh .bh-seo-intro__grid p {
        font-size: 15px;
    }
}

/* ===== popular-categories — clean image-top cards ===== */
.bh .bh-popular-categories {
    background: transparent;
    padding-top: 40px;
    padding-bottom: 40px
}

.bh .bh-popcat-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-popcat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.bh .bh-popcat-card {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(2, 30, 39, .05);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.bh .bh-popcat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 30, 39, .12);
    border-color: #C5DBBD
}

/* square media box matches the square category artwork, so it fills edge-to-edge with no side gaps */
.bh .bh-popcat-media {
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
    background: #fff
}

.bh .bh-popcat-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .35s ease
}

.bh .bh-popcat-card:hover .bh-popcat-media img {
    transform: scale(1.06)
}

.bh .bh-popcat-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-grow: 1
}

.bh .bh-popcat-name {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #021E27;
    margin: 0;
    line-height: 1.3
}

.bh .bh-popcat-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    background: #2E8B22;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    border: none;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease
}

.bh .bh-popcat-btn i {
    transition: transform .25s ease
}

.bh .bh-popcat-btn:hover {
    background: #2E661A;
    color: #fff;
    box-shadow: 0 8px 18px rgba(46, 139, 34, .28)
}

.bh .bh-popcat-btn:hover i {
    transform: translateX(4px)
}

.bh .bh-popcat-foot {
    text-align: center;
    margin-top: 44px
}

@media (max-width:1100px) {
    .bh .bh-popcat-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:768px) {
    .bh .bh-popcat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }
}

@media (max-width:460px) {
    .bh .bh-popcat-grid {
        grid-template-columns: 1fr
    }
}

/* ===== bestsellers ===== */
/* ===== bestsellers — modern product cards with badges ===== */
.bh .bh-bestsellers {
    background: #fff;
    border-top: 1px solid #E4E9E2;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-bestsellers-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-bestsellers-slider {
    position: relative
}

.bh .bh-bestsellers-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.bh .bh-bestsellers-track::-webkit-scrollbar {
    display: none
}

.bh .bh-bestsellers-track>.bh-bestsellers-card {
    flex: 0 0 288px;
    scroll-snap-align: start
}

.bh .bh-bestsellers-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #E4E9E2;
    box-shadow: 0 8px 22px rgba(2, 30, 39, .14);
    color: #2E8B22;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease
}

.bh .bh-bestsellers-arrow:hover {
    background: #2E8B22;
    color: #fff;
    box-shadow: 0 10px 26px rgba(46, 139, 34, .3)
}

.bh .bh-bestsellers-arrow:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px
}

.bh .bh-bestsellers-arrow--prev {
    left: -10px
}

.bh .bh-bestsellers-arrow--next {
    right: -10px
}

.bh .bh-bestsellers-card {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(2, 30, 39, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.bh .bh-bestsellers-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(2, 30, 39, .13);
    border-color: #C5DBBD
}

.bh .bh-bestsellers-media {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #fff
}

.bh .bh-bestsellers-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s ease
}

.bh .bh-bestsellers-card:hover .bh-bestsellers-media img {
    transform: scale(1.06)
}

/* badges */
.bh .bh-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    border-radius: 999px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    line-height: 1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 30, 39, .18)
}

.bh .bh-tag i {
    font-size: 10px
}

.bh .bh-tag--top-seller {
    background: linear-gradient(135deg, #F4B526, #d98a04)
}

.bh .bh-tag--custom {
    background: #2E8B22
}

.bh .bh-tag--fast-dispatch {
    background: #0a7ea4
}

.bh .bh-tag--bestseller {
    background: #2E661A
}

.bh .bh-stock {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(2, 30, 39, .12)
}

.bh .bh-stock i {
    font-size: 11px
}

.bh .bh-stock.is-in {
    color: #1f7a32
}

.bh .bh-stock.is-in i {
    color: #37b24d
}

.bh .bh-stock.is-out {
    color: #c0392b
}

.bh .bh-stock.is-out i {
    color: #e74c3c
}

/* body */
.bh .bh-bestsellers-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.bh .bh-bestsellers-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.bh .bh-bestsellers-rating .bh-stars {
    color: #EFA106;
    font-size: 12px;
    display: inline-flex;
    gap: 2px
}

.bh .bh-bestsellers-rating .bh-reviews {
    font-size: 12px;
    color: #627C84;
    line-height: 1
}

.bh .bh-bestsellers-rating .bh-reviews strong {
    color: #021E27;
    font-weight: 700
}

.bh .bh-bestsellers-name {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
    color: #021E27;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bh .bh-bestsellers-foot {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #EEF2EC
}

.bh .bh-bestsellers-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 12px
}

.bh .bh-bestsellers-price .bh-price-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #627C84
}

.bh .bh-bestsellers-price strong {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: #2E661A;
    line-height: 1
}

.bh .bh-bestsellers-price .bh-price-ea {
    font-size: 12px;
    color: #627C84
}

.bh .bh-bestsellers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    background: #2E8B22;
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    border: none;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease
}

.bh .bh-bestsellers-btn i {
    transition: transform .25s ease
}

.bh .bh-bestsellers-btn:hover {
    background: #2E661A;
    color: #fff;
    box-shadow: 0 8px 18px rgba(46, 139, 34, .28)
}

.bh .bh-bestsellers-btn:hover i {
    transform: translateX(4px)
}

@media (max-width:767px) {
    .bh .bh-bestsellers-track {
        gap: 16px
    }

    .bh .bh-bestsellers-track>.bh-bestsellers-card {
        flex: 0 0 78%
    }

    .bh .bh-bestsellers-arrow {
        display: none
    }
}

/* ===== brand-logos — auto-scrolling logo marquee ===== */
.bh .bh-brand-logos {
    background: transparent;
    padding: 44px 0;
    text-align: center;
    overflow: hidden
}

.bh .bh-brand-logos-title {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #627C84;
    margin: 0 0 8px
}

.bh .bh-brand-logos-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2E8B22;
    margin: 0 0 30px
}

.bh .bh-brand-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%)
}

.bh .bh-brand-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: bhBrandMarquee 34s linear infinite;
    will-change: transform
}

.bh .bh-brand-marquee:hover .bh-brand-track {
    animation-play-state: paused
}

.bh .bh-brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-right: 64px
}

.bh .bh-brand-item img {
    max-height: 54px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .6;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease
}

.bh .bh-brand-item img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.06)
}

@keyframes bhBrandMarquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media (max-width:767px) {
    .bh .bh-brand-logos {
        padding: 32px 0
    }

    .bh .bh-brand-logos-title {
        margin-bottom: 6px;
        font-size: 12px;
        letter-spacing: 1.5px
    }

    .bh .bh-brand-logos-sub {
        margin-bottom: 22px;
        font-size: 13px
    }

    .bh .bh-brand-item {
        height: 48px;
        margin-right: 44px
    }

    .bh .bh-brand-item img {
        max-height: 42px;
        max-width: 130px
    }
}

@media (prefers-reduced-motion:reduce) {
    .bh .bh-brand-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto
    }

    .bh .bh-brand-item {
        margin: 10px 22px
    }
}

/* ===== catalog ===== */
/* ===== catalog — modern product cards (shares .bh-tag / .bh-stock with bestsellers) ===== */
.bh .bh-catalog {
    background: #fff;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px
}

.bh .bh-catalog-card {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(2, 30, 39, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.bh .bh-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(2, 30, 39, .13);
    border-color: #C5DBBD
}

.bh .bh-catalog-media {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #fff
}

.bh .bh-catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s ease
}

.bh .bh-catalog-card:hover .bh-catalog-media img {
    transform: scale(1.06)
}

.bh .bh-catalog-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.bh .bh-catalog-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    flex-wrap: wrap
}

.bh .bh-catalog-rating .bh-stars {
    color: #EFA106;
    font-size: 11px;
    display: inline-flex;
    gap: 2px
}

.bh .bh-catalog-rating .bh-reviews {
    font-size: 11.5px;
    color: #627C84;
    line-height: 1
}

.bh .bh-catalog-rating .bh-reviews strong {
    color: #021E27;
    font-weight: 700
}

.bh .bh-catalog-name {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
    color: #021E27;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bh .bh-catalog-foot {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #EEF2EC
}

.bh .bh-catalog-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px
}

.bh .bh-catalog-price .bh-price-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #627C84
}

.bh .bh-catalog-price strong {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: #2E661A;
    line-height: 1
}

.bh .bh-catalog-price .bh-price-ea {
    font-size: 11px;
    color: #627C84
}

.bh .bh-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: #2E8B22;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    text-decoration: none;
    border: none;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease
}

.bh .bh-catalog-btn i {
    transition: transform .25s ease
}

.bh .bh-catalog-btn:hover {
    background: #2E661A;
    color: #fff;
    box-shadow: 0 8px 18px rgba(46, 139, 34, .28)
}

.bh .bh-catalog-btn:hover i {
    transform: translateX(4px)
}

.bh .bh-catalog-footer {
    text-align: center;
    margin-top: 40px
}

@media (max-width:1100px) {
    .bh .bh-catalog-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width:900px) {
    .bh .bh-catalog-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:600px) {
    .bh .bh-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }
}

@media (max-width:400px) {
    .bh .bh-catalog-grid {
        grid-template-columns: 1fr
    }
}

/* ===== guarantees — trust cards + stats ribbon ===== */
.bh .bh-guarantees {
    background: transparent;
    padding-top: 48px;
    padding-bottom: 56px
}

.bh .bh-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px
}

.bh .bh-guarantees-card {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(2, 30, 39, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.bh .bh-guarantees-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 30, 39, .10);
    border-color: #C5DBBD
}

.bh .bh-guarantees-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(150deg, #E7F1E2, #D6EBCF);
    color: #2E8B22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: background .25s ease, color .25s ease, transform .25s ease
}

.bh .bh-guarantees-card:hover .bh-guarantees-icon {
    background: linear-gradient(150deg, #2E8B22, #2E661A);
    color: #fff;
    transform: scale(1.06)
}

.bh .bh-guarantees-card h3 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #021E27
}

.bh .bh-guarantees-card p {
    font-size: 14px;
    color: #627C84;
    margin: 0;
    line-height: 1.6
}

.bh .bh-guarantees-ribbon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2E661A 0%, #3D7E25 100%);
    border-radius: 20px;
    padding: 36px 30px;
    color: #fff;
    box-shadow: 0 14px 34px rgba(46, 102, 26, .22)
}

.bh .bh-guarantees-ribbon::before {
    content: '';
    position: absolute;
    top: -45%;
    right: -4%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
    pointer-events: none
}

.bh .bh-guarantees-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center
}

.bh .bh-guarantees-stat {
    border-right: 1px solid rgba(255, 255, 255, .16);
    padding: 2px 10px
}

.bh .bh-guarantees-stat:last-child {
    border-right: none
}

.bh .bh-guarantees-stat-icon {
    font-size: 24px;
    color: #bdf0ad;
    margin-bottom: 10px
}

.bh .bh-guarantees-stat-value {
    font-size: 30px;
    font-weight: 800;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    line-height: 1;
    margin-bottom: 6px
}

.bh .bh-guarantees-stat-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px
}

@media (max-width:991px) {
    .bh .bh-guarantees-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px
    }

    .bh .bh-guarantees-stat {
        border-right: none
    }
}

@media (max-width:767px) {
    .bh .bh-guarantees {
        padding-top: 36px;
        padding-bottom: 40px
    }

    .bh .bh-guarantees-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px
    }

    .bh .bh-guarantees-ribbon {
        padding: 28px 22px
    }
}

@media (max-width:500px) {
    .bh .bh-guarantees-stats {
        grid-template-columns: 1fr;
        gap: 22px
    }
}

/* ===== vertical-showcase — ranked "top picks" leaderboard ===== */
.bh .bh-vertical-showcase {
    background: #FAFBF9;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-vs-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-vs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

/* column card */
.bh .bh-vs-column {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(2, 30, 39, .05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease
}

.bh .bh-vs-column:hover {
    box-shadow: 0 18px 36px rgba(2, 30, 39, .10);
    border-color: #C5DBBD
}

/* column header */
.bh .bh-vs-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #EEF2EC
}

.bh .bh-vs-head-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(150deg, #E7F1E2, #D6EBCF);
    color: #2E8B22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px
}

.bh .bh-vs-head-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0
}

.bh .bh-vs-head-text h3 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #021E27;
    line-height: 1.2
}

.bh .bh-vs-head-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #627C84
}

/* list */
.bh .bh-vs-list {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1
}

.bh .bh-vs-list li {
    display: block
}

/* row (link) */
.bh .bh-vs-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background .2s ease
}

.bh .bh-vs-item:hover {
    background: #F4F7F2
}

.bh .bh-vs-item:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px;
    background: #F4F7F2
}

/* rank medallion */
.bh .bh-vs-rank {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #F0F4ED;
    color: #2E661A;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background .2s ease, color .2s ease
}

.bh .bh-vs-item:hover .bh-vs-rank {
    background: #2E8B22;
    color: #fff
}

.bh .bh-vs-item--top .bh-vs-rank {
    background: linear-gradient(135deg, #F4B526, #d98a04);
    color: #fff;
    box-shadow: 0 2px 8px rgba(217, 138, 4, .3)
}

.bh .bh-vs-item--top:hover .bh-vs-rank {
    background: linear-gradient(135deg, #F4B526, #d98a04);
    color: #fff
}

/* thumb */
.bh .bh-vs-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E4E9E2;
    background: #FAFBF9
}

.bh .bh-vs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

/* details */
.bh .bh-vs-details {
    flex-grow: 1;
    min-width: 0
}

.bh .bh-vs-details h4 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px;
    color: #021E27;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bh .bh-vs-price {
    font-size: 13px;
    color: #627C84;
    font-weight: 500
}

.bh .bh-vs-price strong {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #2E661A
}

/* chevron */
.bh .bh-vs-go {
    flex-shrink: 0;
    color: #C5DBBD;
    font-size: 12px;
    transition: color .2s ease, transform .2s ease
}

.bh .bh-vs-item:hover .bh-vs-go {
    color: #2E8B22;
    transform: translateX(3px)
}

/* footer */
.bh .bh-vs-foot {
    padding: 8px 16px 18px;
    margin-top: auto
}

.bh .bh-vs-btn {
    width: 100%;
    justify-content: center
}

@media (max-width:991px) {
    .bh .bh-vs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 560px;
        margin: 0 auto
    }
}

@media (max-width:767px) {
    .bh .bh-vs-thumb {
        width: 50px;
        height: 50px
    }

    .bh .bh-vs-head {
        padding: 18px 16px 14px
    }
}

@media (prefers-reduced-motion:reduce) {

    .bh .bh-vs-column,
    .bh .bh-vs-item,
    .bh .bh-vs-thumb img,
    .bh .bh-vs-rank,
    .bh .bh-vs-go {
        transition: none
    }

    .bh .bh-vs-column:hover {
        transform: none
    }
}

/* ===== use-cases — "shop by role" persona finder ===== */
.bh .bh-use-cases {
    background: #fff;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-uc-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

/* segmented tabs */
.bh .bh-uc-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.bh .bh-uc-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid #E4E9E2;
    border-radius: 999px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #021E27;
    background: #fff;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease
}

.bh .bh-uc-tab i {
    font-size: 15px;
    color: #627C84;
    transition: color .25s ease
}

.bh .bh-uc-tab:hover {
    border-color: #2E8B22;
    color: #2E8B22
}

.bh .bh-uc-tab:hover i {
    color: #2E8B22
}

.bh .bh-uc-tab:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px
}

.bh .bh-uc-tab.active {
    background: #2E8B22;
    color: #fff;
    border-color: #2E8B22;
    box-shadow: 0 8px 18px rgba(46, 139, 34, .25)
}

.bh .bh-uc-tab.active i {
    color: #fff
}

/* fading panels */
.bh .bh-uc-panels {
    position: relative;
    min-height: 300px
}

.bh .bh-uc-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
    z-index: 1
}

.bh .bh-uc-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: 2
}

.bh .bh-uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.bh .bh-uc-panel-heading {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #021E27;
    margin: 0 0 22px;
    text-align: center
}

.bh .bh-uc-panel-foot {
    text-align: center;
    margin-top: 30px
}

/* persona card */
.bh .bh-uc-card {
    position: relative;
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(2, 30, 39, .05);
    transition: box-shadow .25s ease, border-color .25s ease
}

.bh .bh-uc-card:hover {
    box-shadow: 0 18px 36px rgba(2, 30, 39, .12);
    border-color: #C5DBBD
}

.bh .bh-uc-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(150deg, #E7F1E2, #D6EBCF);
    color: #2E8B22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    transition: background .25s ease, color .25s ease
}

.bh .bh-uc-card:hover .bh-uc-card-icon {
    background: linear-gradient(150deg, #2E8B22, #2E661A);
    color: #fff
}

.bh .bh-uc-card-eyebrow {
    display: inline-block;
    align-self: flex-start;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #EEF5EA;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px
}

.bh .bh-uc-card-role {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #021E27;
    margin: 0 0 10px;
    line-height: 1.25
}

.bh .bh-uc-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #627C84;
    margin: 0 0 20px;
    flex-grow: 1
}

.bh .bh-uc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #2E661A;
    text-decoration: none;
    transition: color .2s ease
}

.bh .bh-uc-card-link i {
    font-size: 12px;
    transition: transform .2s ease
}

.bh .bh-uc-card-link:hover {
    color: #2E8B22
}

.bh .bh-uc-card-link:hover i {
    transform: translateX(4px)
}

.bh .bh-uc-card-link:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 3px;
    border-radius: 4px
}

@media (max-width:991px) {
    .bh .bh-uc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:767px) {
    .bh .bh-uc-tab {
        padding: 10px 16px;
        font-size: 13px
    }

    .bh .bh-uc-grid {
        grid-template-columns: 1fr
    }

    .bh .bh-uc-panels {
        min-height: 0
    }
}

@media (max-width:560px) {
    .bh .bh-uc-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch
    }

    .bh .bh-uc-tab {
        flex: 0 0 auto
    }
}

@media (prefers-reduced-motion:reduce) {

    .bh .bh-uc-card,
    .bh .bh-uc-card-icon,
    .bh .bh-uc-panel {
        transition: none
    }

    .bh .bh-uc-card:hover {
        transform: none
    }

    .bh .bh-uc-panel {
        transform: none
    }
}

/* ===== delivery — "when will it arrive" (full-width two-column: intro + results panel) ===== */
.bh .bh-delivery {
    background: transparent;
    border-bottom: 1px solid #E4E9E2;
    padding: 60px 0
}

.bh .bh-delivery-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) 1.5fr;
    gap: 44px;
    align-items: center
}

/* left intro column */
.bh .bh-delivery-intro {
    text-align: left
}

.bh .bh-delivery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px
}

.bh .bh-delivery-intro h2 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #021E27;
    margin: 0 0 12px;
    line-height: 1.1
}

.bh .bh-delivery-lead {
    font-size: 15px;
    color: #627C84;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 420px
}

.bh .bh-delivery-form-row {
    display: flex;
    gap: 12px;
    max-width: 460px
}

.bh .bh-delivery-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.bh .bh-delivery-input {
    flex-grow: 1;
    min-width: 0;
    padding: 14px 18px;
    border: 1.5px solid #E4E9E2;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #021E27;
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease
}

.bh .bh-delivery-input::placeholder {
    color: #9AAEA6
}

.bh .bh-delivery-input:focus {
    border-color: #2E8B22;
    box-shadow: 0 0 0 4px rgba(46, 139, 34, .10)
}

.bh .bh-delivery-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 26px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #2E8B22;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease
}

.bh .bh-delivery-check:hover {
    background: #2E661A;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(46, 139, 34, .22)
}

.bh .bh-delivery-check:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px
}

.bh .bh-delivery-check i {
    font-size: 13px;
    transition: transform .2s ease
}

.bh .bh-delivery-check:hover i {
    transform: translateX(3px)
}

.bh .bh-delivery-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #627C84;
    margin: 14px 0 0
}

.bh .bh-delivery-note i {
    color: #2E8B22
}

/* right results panel */
.bh .bh-delivery-panel {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(2, 30, 39, .06);
    padding: 6px 8px
}

.bh .bh-delivery-loader {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 44px 0
}

.bh .bh-delivery-spinner {
    width: 38px;
    height: 38px;
    border: 4px solid #E4E9E2;
    border-top: 4px solid #2E8B22;
    border-radius: 50%;
    animation: bh-delivery-spin 1s linear infinite
}

@keyframes bh-delivery-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.bh .bh-delivery-results {
    display: none
}

.bh .bh-delivery-list {
    display: flex;
    flex-direction: column
}

.bh .bh-delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: background .2s ease
}

.bh .bh-delivery-item+.bh-delivery-item {
    border-top: 1px solid #EEF2EC
}

.bh .bh-delivery-item-ic {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(150deg, #EAF4E5, #D2E8C9);
    color: #2E8B22
}

.bh .bh-delivery-item-main {
    flex-grow: 1;
    min-width: 0
}

.bh .bh-delivery-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.bh .bh-delivery-item-name {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #021E27
}

.bh .bh-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    border-radius: 999px;
    padding: 4px 10px
}

.bh .bh-delivery-badge i {
    font-size: 9px
}

.bh .bh-delivery-item-sub {
    font-size: 13.5px;
    color: #627C84;
    margin: 5px 0 0;
    line-height: 1.4
}

.bh .bh-delivery-item-meta {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-left: 16px
}

.bh .bh-delivery-item-date {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #021E27;
    line-height: 1.2;
    white-space: nowrap
}

.bh .bh-delivery-item-date:empty {
    display: none
}

.bh .bh-delivery-item-rate {
    font-size: 14px;
    font-weight: 600;
    color: #627C84
}

/* recommended row — green highlight */
.bh .bh-delivery-item--recommended {
    background: #F1F7EE;
    box-shadow: inset 3px 0 0 #2E8B22
}

.bh .bh-delivery-item--recommended .bh-delivery-item-ic {
    background: #2E8B22;
    color: #fff
}

.bh .bh-delivery-item--recommended .bh-delivery-item-date {
    color: #2E8B22
}

@media (prefers-reduced-motion:reduce) {
    .bh .bh-delivery-check {
        transition: none
    }

    .bh .bh-delivery-check:hover {
        transform: none
    }
}

@media (max-width:991px) {
    .bh .bh-delivery-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .bh .bh-delivery-intro {
        text-align: center
    }

    .bh .bh-delivery-intro h2 {
        font-size: 32px
    }

    .bh .bh-delivery-lead {
        margin-left: auto;
        margin-right: auto
    }

    .bh .bh-delivery-form-row {
        margin-left: auto;
        margin-right: auto
    }
}

@media (max-width:767px) {
    .bh .bh-delivery-item {
        padding: 13px 12px;
        gap: 13px
    }

    .bh .bh-delivery-item-ic {
        width: 36px;
        height: 36px;
        font-size: 15px;
        border-radius: 10px
    }

    .bh .bh-delivery-form-row {
        flex-direction: column
    }

    .bh .bh-delivery-check {
        width: 100%;
        justify-content: center
    }

    .bh .bh-delivery-item-name {
        font-size: 16px
    }

    .bh .bh-delivery-item-date {
        font-size: 15px
    }

    .bh .bh-delivery-item-meta {
        padding-left: 10px
    }
}

/* ===== xfactor — in-house design & factory (soft cards) ===== */
.bh .bh-xfactor {
    background: transparent;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-xfactor-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-xfactor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.bh .bh-xfactor-column {
    border: 1px solid #E4E9E2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(2, 30, 39, .05);
    background: #fff;
    transition: box-shadow .25s ease
}

.bh .bh-xfactor-column:hover {
    box-shadow: 0 12px 30px rgba(2, 30, 39, .08)
}

.bh .bh-xfactor-img-box {
    height: 240px;
    overflow: hidden;
    background: #F4F7F2
}

.bh .bh-xfactor-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.bh .bh-xfactor-body {
    padding: 28px 30px 30px
}

.bh .bh-xfactor-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #EEF5EA;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px
}

.bh .bh-xfactor-body h3 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #021E27
}

.bh .bh-xfactor-body p {
    font-size: 15px;
    color: #627C84;
    line-height: 1.65;
    margin: 0
}

@media (max-width:991px) {
    .bh .bh-xfactor-grid {
        gap: 24px
    }
}

@media (max-width:767px) {
    .bh .bh-xfactor-grid {
        grid-template-columns: 1fr
    }

    .bh .bh-xfactor-body {
        padding: 24px
    }

    .bh .bh-xfactor-img-box {
        height: 220px
    }
}

/* ===== timeline — 4-step process (soft medallions + connector) ===== */
.bh .bh-timeline {
    background: transparent;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-timeline-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-timeline-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative
}

.bh .bh-timeline-flow::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #C5DBBD 0 7px, transparent 7px 15px);
    z-index: 0
}

.bh .bh-timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px
}

.bh .bh-timeline-marker {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px
}

.bh .bh-timeline-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(150deg, #EAF4E5, #D2E8C9);
    color: #2E8B22;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(46, 139, 34, .16)
}

.bh .bh-timeline-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #2E8B22;
    color: #fff;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(46, 139, 34, .3)
}

.bh .bh-timeline-step h3 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #021E27
}

.bh .bh-timeline-step p {
    font-size: 13.5px;
    color: #627C84;
    margin: 0;
    line-height: 1.5
}

.bh .bh-timeline-cta {
    text-align: center;
    margin-top: 44px
}

@media (max-width:991px) {
    .bh .bh-timeline-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px
    }

    .bh .bh-timeline-flow::before {
        display: none
    }
}

@media (max-width:520px) {
    .bh .bh-timeline-flow {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

/* ===== whychoose — why choose BAM (soft tab-cards + content card) ===== */
.bh .bh-whychoose {
    background: transparent;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-whychoose-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-whychoose-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px
}

.bh .bh-whychoose-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bh .bh-whychoose-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #2A4046;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    width: 100%;
    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease
}

.bh .bh-whychoose-tab-ic {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #EEF5EA;
    color: #2E8B22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background .2s ease, color .2s ease
}

.bh .bh-whychoose-tab-label {
    flex-grow: 1;
    line-height: 1.3
}

.bh .bh-whychoose-tab-arrow {
    flex-shrink: 0;
    color: #C5DBBD;
    font-size: 12px
}

.bh .bh-whychoose-tab:hover {
    background: #F4F7F2;
    color: #2E661A
}

.bh .bh-whychoose-tab:focus-visible {
    outline: 2px solid #2E8B22;
    outline-offset: 2px
}

.bh .bh-whychoose-tab.active {
    background: #fff;
    border-color: #E4E9E2;
    color: #2E661A;
    box-shadow: 0 6px 18px rgba(2, 30, 39, .07)
}

.bh .bh-whychoose-tab.active .bh-whychoose-tab-ic {
    background: #2E8B22;
    color: #fff
}

.bh .bh-whychoose-tab.active .bh-whychoose-tab-arrow {
    color: #2E8B22
}

.bh .bh-whychoose-content {
    position: relative;
    min-height: 340px
}

.bh .bh-whychoose-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 1
}

.bh .bh-whychoose-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2
}

.bh .bh-whychoose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center
}

.bh .bh-whychoose-body h3 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #021E27;
    margin: 0 0 14px
}

.bh .bh-whychoose-body p {
    font-size: 15px;
    color: #627C84;
    line-height: 1.65;
    margin: 0 0 18px
}

.bh .bh-whychoose-bullets {
    display: flex;
    flex-direction: column;
    gap: 11px
}

.bh .bh-whychoose-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #021E27
}

.bh .bh-whychoose-bullet i {
    color: #2E8B22;
    font-size: 15px
}

.bh .bh-whychoose-img {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E4E9E2;
    box-shadow: 0 4px 14px rgba(2, 30, 39, .06)
}

.bh .bh-whychoose-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px
}

.bh .bh-whychoose-specs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 13.5px;
    text-align: left;
    color: #2A4046
}

.bh .bh-whychoose-specs thead tr {
    border-bottom: 2px solid #E4E9E2;
    color: #021E27
}

.bh .bh-whychoose-specs th {
    padding: 7px 12px;
    font-weight: 700
}

.bh .bh-whychoose-specs th:first-child {
    padding: 7px 12px 7px 0
}

.bh .bh-whychoose-specs tbody tr {
    border-bottom: 1px solid #EEF2EC
}

.bh .bh-whychoose-specs td {
    padding: 7px 12px
}

.bh .bh-whychoose-specs td.bh-whychoose-specs-label {
    padding: 7px 12px 7px 0;
    font-weight: 600;
    color: #021E27
}

.bh .bh-whychoose-specs td.bh-whychoose-specs-warranty {
    color: #2E8B22;
    font-weight: 600
}

@media (max-width:991px) {
    .bh .bh-whychoose-layout {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .bh .bh-whychoose-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
        gap: 10px
    }

    .bh .bh-whychoose-tab {
        white-space: nowrap;
        flex: 0 0 auto
    }

    .bh .bh-whychoose-tab-arrow {
        display: none
    }
}

@media (max-width:767px) {
    .bh .bh-whychoose-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .bh .bh-whychoose-body h3 {
        font-size: 22px
    }

    .bh .bh-whychoose-img {
        order: -1
    }
}

/* ===== faq ===== */
.bh .bh-faq {
    background: #FAFBF9;
    border-bottom: 1px solid #E4E9E2
}

.bh .bh-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bh .bh-faq-item {
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(2, 30, 39, 0.05)
}

.bh .bh-faq-trigger {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #021E27;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1.4
}

.bh .bh-faq-trigger i {
    flex-shrink: 0;
    color: #627C84;
    transition: transform 0.3s ease
}

.bh .bh-faq-item.active .bh-faq-trigger i {
    transform: rotate(180deg);
    color: #2E8B22
}

.bh .bh-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)
}

.bh .bh-faq-content-inner {
    padding: 0 24px 20px 24px;
    font-size: 14.5px;
    color: #627C84;
    line-height: 1.6;
    border-top: 1px solid #FAFBF9
}

@media (max-width:991px) {
    .bh .bh-faq-list {
        max-width: 100%
    }
}

@media (max-width:767px) {
    .bh .bh-faq-trigger {
        padding: 16px 18px;
        font-size: 15px
    }

    .bh .bh-faq-content-inner {
        padding: 0 18px 16px 18px;
        font-size: 14px
    }
}

/* ===== Testimonials ===== */
.bh-testimonials {
    background: transparent;
    border-bottom: 1px solid #E4E9E2;
    overflow: hidden
}

.bh-testimonials .bh-container {
    max-width: none
}

.bh .bh-testimonials-eyebrow {
    display: inline-block;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E8B22;
    background: #E7F1E2;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px
}

.bh .bh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px
}

.bh .bh-testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    margin: 0;
    background: #fff;
    border: 1px solid #E4E9E2;
    border-radius: 16px;
    padding: 24px 22px;
    transition: border-color .3s ease
}

.bh .bh-testimonial-card:hover {
    border-color: #C5DBBD
}

.bh .bh-testimonial-stars {
    display: flex;
    gap: 3px;
    color: #EFA106;
    font-size: 14px
}

.bh .bh-testimonial-text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: #2A4046;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.bh .bh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid #EEF2EC
}

.bh .bh-testimonial-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E7F1E2
}

.bh .bh-testimonial-avatar--initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2E8B22, #2E661A);
    color: #fff;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border: none
}

.bh .bh-testimonial-meta {
    display: flex;
    flex-direction: column;
    min-width: 0
}

.bh .bh-testimonial-name {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #021E27;
    line-height: 1.3
}

.bh .bh-testimonial-role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #627C84;
    line-height: 1.3;
    margin-top: 3px
}

.bh .bh-testimonial-role i {
    color: #4285F4;
    font-size: 12px
}

@media (max-width:767px) {
    .bh .bh-testimonials-grid {
        grid-template-columns: 1fr
    }

    .bh .bh-testimonial-card {
        padding: 24px 22px
    }
}

/* Testimonials — Google-style summary + auto carousel */
.bh .bh-tm-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 100%
}

.bh .bh-tm-summary {
    background: transparent;
    padding: 4px 0;
    display: flex;
    flex-direction: column
}

.bh .bh-tm-summary> :last-child {
    margin-bottom: 0
}

.bh .bh-tm-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #021E27;
    margin-bottom: 18px
}

.bh .bh-tm-brand i {
    color: #4285F4;
    font-size: 18px
}

.bh .bh-tm-score {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px
}

.bh .bh-tm-score-num {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #021E27;
    line-height: 1
}

.bh .bh-tm-score-side {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.bh .bh-tm-stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap
}

.bh .bh-tm-stars-bg {
    color: #DCE4D6
}

.bh .bh-tm-stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #EFA106;
    width: calc(var(--rating) / 5 * 100%)
}

.bh .bh-tm-score-count {
    font-size: 13px;
    color: #627C84
}

.bh .bh-tm-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px
}

.bh .bh-tm-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #627C84
}

.bh .bh-tm-bar-label {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    width: 28px;
    flex-shrink: 0;
    font-weight: 600;
    color: #2A4046
}

.bh .bh-tm-bar-label i {
    color: #EFA106;
    font-size: 10px
}

.bh .bh-tm-bar {
    position: relative;
    flex: 1;
    height: 8px;
    background: #EEF2EC;
    border-radius: 999px;
    overflow: hidden
}

.bh .bh-tm-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #EFA106;
    border-radius: 999px;
    transition: width .4s ease
}

.bh .bh-tm-bar-count {
    width: 36px;
    flex-shrink: 0;
    text-align: right;
    font-variant-numeric: tabular-nums
}

.bh .bh-tm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    border-radius: 11px;
    background: #2E8B22;
    color: #fff;
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: background .2s ease, box-shadow .2s ease
}

.bh .bh-tm-cta i {
    font-size: 12px;
    transition: transform .2s ease
}

.bh .bh-tm-cta:hover i {
    transform: translateX(3px)
}

.bh .bh-tm-cta:hover {
    background: #2E661A;
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 139, 34, .25)
}

.bh .bh-tm-carousel {
    position: relative;
    min-width: 0;
    max-width: 100%;
    overflow: hidden
}

.bh .bh-tm-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: bh-tm-scroll 48s linear infinite
}

.bh .bh-tm-carousel:hover .bh-tm-track {
    animation-play-state: paused
}

.bh .bh-tm-track .bh-testimonial-card {
    flex: 0 0 330px;
    width: 330px;
    margin-right: 20px
}

@keyframes bh-tm-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media (max-width:991px) {
    .bh .bh-tm-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px
    }
}

@media (max-width:575px) {
    .bh .bh-tm-score-num {
        font-size: 40px
    }

    .bh .bh-tm-track .bh-testimonial-card {
        flex-basis: 280px;
        width: 280px
    }
}

@media (prefers-reduced-motion:reduce) {
    .bh .bh-tm-track {
        animation: none
    }

    .bh .bh-tm-carousel {
        overflow-x: auto
    }
}