.wc-faq {
	--wc-faq-accent: #ff6600;
	--wc-faq-icon-rotation: 45deg;
	width: 100%;
}

.wc-faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-faq-item {
	border-bottom: 1px solid #e0e0e0;
}

.wc-faq-item:last-child {
	border-bottom: none;
}

/* QUESTION (button) */
.wc-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	user-select: none;
	transition: color 0.3s ease;
}

.wc-faq-question:hover {
	color: var(--wc-faq-accent);
}

.wc-faq-question-text {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	flex: 1;
	padding-right: 20px;
	transition: color 0.3s ease;
}

.wc-faq-question:hover .wc-faq-question-text {
	color: var(--wc-faq-accent);
}

/* TOGGLE ICON */
.wc-faq-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
	color: #999;
	transition: color 0.3s ease, transform 0.3s ease;
}

.wc-faq-question:hover .wc-faq-toggle {
	color: var(--wc-faq-accent);
}

.wc-faq-item.is-open .wc-faq-toggle {
	color: var(--wc-faq-accent);
	transform: rotate(var(--wc-faq-icon-rotation));
}

/* ANSWER */
.wc-faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	transition: grid-template-rows 0.4s ease;
}

.wc-faq-item.is-open .wc-faq-answer {
	grid-template-rows: 1fr;
}

.wc-faq-answer-text {
	min-height: 0;
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	padding-bottom: 0;
	transition: padding-bottom 0.4s ease;
}

.wc-faq-item.is-open .wc-faq-answer-text {
	padding-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
	.wc-faq-question {
		padding: 16px 0;
	}

	.wc-faq-question-text {
		font-size: 15px;
		padding-right: 12px;
	}

	.wc-faq-toggle {
		font-size: 16px;
	}
}
