.category-content-faq{
	margin-top: 50px;
	padding-top: 30px;
	/* border-top: solid 1px #eee; */
}

/* extra description */
.category-extra-desc{
	line-height: 1.7;
	font-size: 14px;
	max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.category-extra-desc a{
	color: #000;
	text-decoration: underline;
	font-weight: 600;
}
.category-extra-desc a:hover{
	color: #897358;
}

/* FAQ accordion */
.category-faq-title{
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 25px;
}
.category-faq-accordion{
	max-width: 900px;
	margin: 0 auto;
}
.faq-item{
	border-bottom: solid 1px #e2e2e2;
}
.faq-question{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 0;
	cursor: pointer;
}
.faq-question h3{
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #000;
}
.faq-toggle-icon{
	position: relative;
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
}
.faq-toggle-icon::before,
.faq-toggle-icon::after{
	content: '';
	position: absolute;
	background: #000;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-toggle-icon::before{
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	transform: translateY(-50%);
}
.faq-toggle-icon::after{
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	transform: translateX(-50%);
}
.faq-item.active .faq-toggle-icon::after{
	opacity: 0;
	transform: translateX(-50%) rotate(90deg);
}
.faq-answer{
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer{
	max-height: 2000px;
}
.faq-answer-inner{
	padding: 0 0 20px;
	line-height: 1.7;
	font-size: 14px;
	color: #333;
}
.faq-answer-inner a{
	color: #000;
	text-decoration: underline;
}
.faq-answer-inner a:hover{
	color: #897358;
}
