/**
 * Section: Product Features
 * Icon + title + value grid.
 */

.bc-product-features {
    padding: 80px 0;
}

.bc-product-features__grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bc-product-features__item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bc-product-features__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    color: var(--bc-pink);
    line-height: 0;
}

.bc-product-features__icon svg {
    width: 100%;
    height: 100%;
}

.bc-product-features__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-product-features__title {
    font-family: var(--bc-font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bc-dark-brown);
    margin: 0;
}

.bc-product-features__value {
    font-family: var(--bc-font-heading);
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: var(--bc-black);
    margin: 0;
}

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
    .bc-product-features__grid {
        padding: 0 40px;
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .bc-product-features__item {
        width: 50%;
    }

    .bc-product-features {
        padding: 60px 0;
    }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
    .bc-product-features__grid {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .bc-product-features__item {
        width: 100%;
    }

    .bc-product-features {
        padding: 40px 0;
    }

    .bc-product-features__icon {
        width: 56px;
        height: 56px;
    }

    .bc-product-features__value {
        font-size: 22px;
        line-height: 26px;
    }
}
