/* Category FAQ Accordion — base styles. Override via .cfa-* classes in your theme/Elementor custom CSS. */

.cfa-section {
	margin: 30px 0;
}

.cfa-heading {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
}

.cfa-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cfa-item {
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
}

.cfa-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 18px;
	background: #fafafa;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.cfa-question__text {
	flex: 1;
}

.cfa-icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.cfa-icon::before,
.cfa-icon::after {
	content: "";
	position: absolute;
	background: currentColor;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cfa-icon::before {
	width: 14px;
	height: 2px;
}

.cfa-icon::after {
	width: 2px;
	height: 14px;
	transition: transform 0.2s ease;
}

.cfa-item--open .cfa-icon::after {
	transform: translate(-50%, -50%) scaleY(0);
}

.cfa-answer {
	padding: 0 18px;
}

.cfa-answer__inner {
	padding: 14px 0;
	font-size: 15px;
	line-height: 1.6;
}
