/* ============================================
   Product FAQ
   ============================================ */

.product-faq {
    padding: 3rem 0;
    background: #fff;
}

.product-faq__list {
    max-width: 760px;
}

.product-faq__item {
    border-bottom: 1px solid #e8e4dc;
}

.product-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.product-faq__question:hover { color: #3a6b30; }

.product-faq__chevron {
    flex-shrink: 0;
    color: #888;
    transition: transform 0.25s ease;
}

.product-faq__item.is-open .product-faq__chevron {
    transform: rotate(180deg);
}

.product-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.product-faq__item.is-open .product-faq__answer {
    grid-template-rows: 1fr;
}

.product-faq__answer p {
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
    padding-bottom: 1.1rem;
}