/* ============================================================
   BH Our Products Section
   ============================================================ */

.bh-our-products {
    padding: 70px 0;
    background-color: var(--cold) !important;
    overflow: hidden;
}

/* ── Header ── */
.bh-op-header {
 
}

.bh-op-header__title {
font-family: var(--font-family);
font-weight: 600;
font-size: 42px;
line-height: 119%;
color: var(--white);
    margin: 0 0 16px;
}

.bh-op-header__subtitle {
font-family: var(--font-family);
font-weight: 500;
font-size: 18px;
line-height: 144%;
color: var(--white);
    max-width: 600px;
    opacity: 0.8;
    margin: 0;
}

/* ── Product row ── */
.bh-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 56px 0;
    position: relative;
    z-index: 1;
}

.bh-product--reverse .bh-product__visual {
    order: -1;
}

/* ── Content ── */
.bh-product__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bh-product__title {
font-family: var(--font-family);
font-weight: 600;
font-size: 36px;
line-height: 139%;
color: var(--white);
    margin: 0;
}

.bh-product__desc {
font-family: var(--font-family);
font-weight: 500;
font-size: 18px;
line-height: 144%;
color: var(--white);
opacity: 0.8;
    margin: 0;
}

/* ── Features grid: 2 columns ── */
.bh-product__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.bh-product__feature {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
}
.bh-product__feature-top{
    display: flex;
    gap: 12px;
    align-items: center;
}
.bh-product__feature-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.3);
}

.bh-product__feature-icon {
    display: block;
    max-height: 25px;
    width: auto;
    object-fit: contain;
}

.bh-product__feature-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bh-product__feature-title {
font-family: var(--font-family);
font-weight: 600;
font-size: 22px;
line-height: 145%;
color: var(--white);
    margin: 0;
}

.bh-product__feature-text {
font-family: var(--font-family);
font-weight: 500;
font-size: 16px;
line-height: 163%;
color: rgba(255, 255, 255, 0.8);
opacity: 0.8;
}

/* ── CTA Button ── */
.bh-op-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 36px;
    border-radius: 30px;
    background: linear-gradient(165deg, #fe4377 0%, #f39c12 100%);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 144%;
    color: var(--white);
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.bh-op-btn:hover {
    opacity: 0.88;
}

/* ── Visual ── */
.bh-product__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}
.bh-product__visual:after{
    content: '';
    display: block;
    position: absolute;
    width: 800px;
    height: 800px;
    left: calc(50% - 400px);
    top: calc(50% - 400px);
    border-radius: 50%;
    background-color: #1f2cb8;
    filter: blur(326.52227783203125px);
    z-index: 0;
}
.bh-product__visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .bh-product {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bh-our-products {
        padding: 40px 0;
    }

    .bh-op-header__title {
        font-size: 28px;
    }

    .bh-product {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
        margin: 0;
    }

    .bh-product__content {
        min-width: 0;
    }

    .bh-product--reverse .bh-product__visual {
        order: 0;
    }
    .bh-product__feature-title{
        font-size: 18px;
line-height: 130%;
    }

    /* Hide product image on mobile */
    .bh-product__visual {
        display: none;
    }

    .bh-product__title {
        font-size: 24px;
    }

    /* Features: native horizontal scroll */
    .bh-product__features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        width: 100%;
        min-width: 0;
    }

    .bh-product__features::-webkit-scrollbar {
        display: none;
    }

    .bh-product__feature {
        flex-shrink: 0;
        width: 80vw;
    }

    /* Full-width CTA button */
    .bh-op-btn {
        width: 100%;
        box-sizing: border-box;
        align-self: auto;
    }
}
