.wt-faq-wrap {
	margin: 28px 0;
	font-size: var(--wt-faq-font-size, inherit);
	color: var(--wt-faq-text-color, #111827);
}

.wt-faq-title {
	margin: 0 0 14px 0;
}

.wt-faq-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wt-faq-item {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	background: var(--wt-faq-answer-bg, #ffffff);
}

.wt-faq-question {
	cursor: pointer;
	list-style: none;
	padding: 14px 18px;
	font-weight: 600;
	background: var(--wt-faq-question-bg, #f9fafb);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.wt-faq-question::-webkit-details-marker {
	display: none;
}

.wt-faq-question::after {
	content: "+";
	flex-shrink: 0;
	font-size: 1.2em;
	color: var(--wt-faq-accent-color, #2563eb);
	transition: transform 0.2s ease;
}

.wt-faq-item[open] > .wt-faq-question::after {
	transform: rotate(45deg);
}

.wt-faq-item-plain .wt-faq-question {
	cursor: default;
}

.wt-faq-item-plain .wt-faq-question::after {
	content: "";
}

.wt-faq-answer {
	padding: 14px 18px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wt-faq-answer p:first-child {
	margin-top: 0;
}

.wt-faq-answer p:last-child {
	margin-bottom: 0;
}

/* RTL support (Persian / Arabic sites) */
[dir="rtl"] .wt-faq-question,
.rtl .wt-faq-question {
	direction: rtl;
}
