/**
 * 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;
}

.bc-product-features__note {
    font-family: var(--bc-font-body);
    font-size: 12px;
    line-height: 16px;
    color: var(--bc-dark-brown);
    opacity: 0.75;
    margin-top: -4px;
}

/* ── 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;
        gap: 32px 16px;
    }

    .bc-product-features__item {
        width: calc(50% - 8px);
        gap: 12px;
    }

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

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

    .bc-product-features__text {
        gap: 6px;
        min-width: 0;
    }

    .bc-product-features__title {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

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

    .bc-product-features__note {
        font-size: 10px;
        line-height: 13px;
    }
}
