/* ============================================
   Product Includes / Excludes
   ============================================ */

.product-includes {
    padding: 3rem 0;
    background: #f7f5f0;
}

.product-includes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-includes__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.product-includes__heading--yes { color: #3a6b30; }
.product-includes__heading--no  { color: #555; }

.product-includes__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-includes__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

.product-includes__item svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 600px) {
    .product-includes__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}