/* ============================================
   Product Why — icon + text strips
   ============================================ */

.product-why {
    background: #f7f5f0;
    padding: 2rem 0;
    border-top: 1px solid #e8e4dc;
}

.product-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-why__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-why__icon {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    color: #4a7c3f;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-why__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.product-why__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-why__text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .product-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-why__grid {
        grid-template-columns: 1fr;
    }
}