/* ============ FAQ page ============
   Hero / eyebrow / band come from products.css (loaded alongside this file). */

.faq-sec { padding-block: clamp(2rem, 4vw, 3.25rem); }

/* Search / filter */
.faq-tools { max-width: 52rem; margin: 0 auto clamp(1.25rem, 3vw, 2rem); }
.faq-search { position: relative; }
.faq-search svg {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    width: 1.1rem; height: 1.1rem; color: var(--muted); pointer-events: none;
}
.faq-search input {
    width: 100%; box-sizing: border-box; height: 3.1rem; padding: 0 1rem 0 2.75rem;
    border: 1px solid var(--line); border-radius: 12px; background: #fff;
    font: inherit; font-size: .98rem; color: var(--ink);
}
.faq-search input:focus {
    outline: none; border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, .12);
}
.faq-count { margin-top: .7rem; text-align: center; font-size: .85rem; color: var(--muted); }

/* Accordion */
.faq-list { max-width: 52rem; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item {
    border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden;
    box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s;
}
.faq-item[hidden] { display: none; }
.faq-item[open] { border-color: var(--green-600); box-shadow: var(--shadow); }
.faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.05rem 1.25rem; font-weight: 700; color: var(--ink); font-size: 1rem; line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-900); }
.faq-item summary .chev {
    flex: none; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--cream);
    color: var(--green-700); display: grid; place-items: center; transition: transform .25s, background .2s, color .2s;
}
.faq-item summary .chev svg { width: .9rem; height: .9rem; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--green-600); color: #fff; }
.faq-item .ans { padding: 0 1.25rem 1.15rem; color: var(--muted); line-height: 1.75; }
.faq-item .ans > *:first-child { margin-top: 0; }
.faq-item .ans > *:last-child { margin-bottom: 0; }
.faq-item .ans p { margin: 0 0 .85rem; }
.faq-item .ans ul, .faq-item .ans ol { margin: 0 0 .85rem; padding-left: 1.4rem; }
.faq-item .ans ul { list-style: disc; }
.faq-item .ans ol { list-style: decimal; }
.faq-item .ans li { margin-bottom: .35rem; }
.faq-item .ans li::marker { color: var(--green-600); }
.faq-item .ans a { color: var(--green-700); text-decoration: underline; font-weight: 600; }

/* Empty state */
.faq-empty { max-width: 52rem; margin: 0 auto; text-align: center; padding: 2.5rem 1rem; color: var(--muted); }
.faq-empty svg { width: 2.4rem; height: 2.4rem; color: var(--line); margin-bottom: .6rem; }
