/* ─── Wrapper ───────────────────────────────────────── */
.av-product-faq {
	width: 100%;
}

.av-product-faq--boxed {
	background: #f4f9f4;
	border-radius: 28px;
	padding: 56px 32px;
}

/* Archive instance — rendered after pagination on product taxonomy pages. */
.av-product-faq--archive {
	margin-top: 35px;
}

/* ─── Intro (left) ──────────────────────────────────── */
.av-product-faq__intro {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.av-product-faq__heading {
	margin: 0;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #101828;
}

.av-product-faq__helper {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #6a7282;
}

.av-product-faq__helper-link {
	color: #92c096;
	text-decoration: none;
	font-weight: 500;
}

.av-product-faq__helper-link:hover {
	text-decoration: underline;
}

/* ─── List (right) ──────────────────────────────────── */
.av-product-faq__list {
	display: flex;
	flex-direction: column;
}

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

.av-product-faq__item:first-child {
	border-top: 1px solid transparent;
}

.av-product-faq__item:last-child {
	border-bottom: none;
}

.av-product-faq__trigger {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 16px;
	padding: 22px 0;
	margin: 0;
	border: none;
	border-radius: 0;
	background: none;
	cursor: pointer;
	text-align: left;
	color: #101828;
	font-family: inherit;
}

.av-product-faq__trigger:hover .av-product-faq__question {
	color: #6b8a6f;
}

.av-product-faq__question {
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #101828;
	transition: color 0.2s ease;
}

.av-product-faq__chevron {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	color: #6a7282;
	transition: transform 0.25s ease;
}

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

.av-product-faq__panel {
	overflow: hidden;
}

.av-product-faq__answer {
	padding: 0 0 22px;
	font-size: 14px;
	line-height: 1.7;
	color: #374151;
}

.av-product-faq__answer > *:first-child {
	margin-top: 0;
}

.av-product-faq__answer > *:last-child {
	margin-bottom: 0;
}

.av-product-faq__answer ul,
.av-product-faq__answer ol {
	padding-left: 20px;
	margin: 8px 0;
}

.av-product-faq__answer li {
	margin-bottom: 6px;
}

/* ─── Tablet ────────────────────────────────────────── */
@media (max-width: 1024px) {
	.av-product-faq--boxed {
		padding: 44px 32px;
		border-radius: 22px;
	}

	.av-product-faq__heading {
		font-size: 32px;
	}
}

/* ─── Mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
	.av-product-faq--boxed {
		padding: 32px 22px;
		border-radius: 20px;
	}

	.av-product-faq__heading {
		font-size: 26px;
	}

	.av-product-faq__trigger {
		padding: 18px 0;
		gap: 12px;
	}

	.av-product-faq__question {
		font-size: 15px;
	}

	.av-product-faq__answer {
		padding-bottom: 18px;
	}
}
