.faqa-wrapper {
	background: #fff;
	border-radius: 6px;
	padding: 10px;
	border: 1px solid #e4e4e4;
}
.faqa-heading {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 16px;
}
.faqa-category {
	margin-bottom: 12px;
	overflow: hidden;
}
.faqa-category:last-child {
	margin-bottom: 0px;
}
.faqa-category-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	padding: 10px 16px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	text-align: left;
    font-family: inherit;
    background: #F5F5F5;
    border-radius: 6px;
    border: 1px solid #E4E4E4;
}
button[aria-expanded="true"]{
	border-radius: 6px 6px 0 0px;
}

.faqa-category-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.faqa-category-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: #ef4b23;
	color: #fff;
	font-size: 15px;
}
.faqa-category-icon:before {
	line-height: 26px;
}
.faqa-chevron {
	color: #515151;
	transition: transform 0.2s ease;
}
.faqa-category-toggle[aria-expanded="true"] .faqa-chevron {
	transform: rotate(180deg);
}
.faqa-category-panel {
	padding: 0 0px 0px 0px;
    border: 1px solid #E4E4E4;
    border-radius: 0px 0 6px 6px;
    border-top: 0px;
}
.faqa-item {
	border-top: 1px solid #f0f0f0;
	padding: 10px 16px;
}
.faqa-item:first-child {
	border-top: none;
}
.faqa-question-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	padding: 4px 0;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	text-align: left;
	font-family: inherit;
}
.faqa-question-toggle[aria-expanded="true"] .faqa-chevron {
	transform: rotate(180deg);
}
.faqa-answer {
	font-size: 13px;
	color: #666;
	padding: 6px 0 4px;
	line-height: 1.6;
}
.faqa-answer p {
	margin: 0 0 8px;
}

/* Search hero */
.faqa-search-hero {
	max-width: 620px;
	margin: 0 auto 32px;
	text-align: center;
	padding: 28px 24px;
}
.faqa-search-title {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 12px;
	color: #1a1a1a;
}
.faqa-search-highlight {
	color: #ef4b23;
}
.faqa-search-subtitle {
	font-size: 15px;
	color: #333;
	margin: 0 0 20px;
	line-height: 1.5;
}
.faqa-search-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
	isolation: isolate;
	z-index: 100;
	box-sizing: border-box
}
.faqa-search-box {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 6px;
	padding: 4px 6px 4px 18px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.faqa-search-input {
	flex: 1;
	border: none!important;
	outline: none;
	background: transparent;
	font-size: 14px;
	padding: 10px 0;
	font-family: inherit;
	min-width: 0;
}
.faqa-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #555;
	cursor: pointer;
	flex-shrink: 0;
}
.faqa-search-btn:hover {
	background: #ef4b23;
	color: #fff;
}

.faqa-search-btn:hover svg path{
	fill: #fff;
}
.faqa-search-results {
	position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
	box-sizing: border-box;
    margin: 0;
    text-align: left;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-height: 360px;
    overflow-y: auto;
    z-index: 9999;
}
.faqa-search-result-item {
	padding: 14px 18px;
	border-top: 1px solid #f0f0f0;
}
.faqa-search-result-item:first-child {
	border-top: none;
}
.faqa-search-result-question {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 4px;
}
.faqa-search-result-category {
	display: inline-block;
	font-size: 11px;
	color: #ef4b23;
	background: #fdeee8;
	border-radius: 20px;
	padding: 2px 10px;
	margin-bottom: 6px;
}
.faqa-search-result-answer {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}
.faqa-search-no-results {
	padding: 18px;
	text-align: center;
	font-size: 14px;
	color: #888;
}
