/* ============================================
   FAQ SECTION - COMPLETE STYLES
   ============================================ */

.wand-shine-faq {
	background-color: #131415;
	padding: 4rem clamp(16px, 5vw, 64px);
	position: relative;
	overflow: visible !important;
	margin-block-start: 0px;
	z-index: 1;
}

.wp-block-wand-shine-faq {
	margin-block-start: 0px;
}

/* ============================================
   CONTAINER
   ============================================ */

.faq-container {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.faq-header {
	text-align: center;
	margin-bottom: clamp(50px, 8vh, 70px);
}

.faq-label {
	font-family: 'Zalando Sans Expanded', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #D8FF63;
	margin-bottom: clamp(12px, 2vh, 16px);
}

.faq-title {
	color: #FCFBFF;
	margin-bottom: clamp(20px, 3vh, 24px);
}

.faq-description {
	font-family: 'Figtree', sans-serif;
	font-size: clamp(16px, 2.5vw, 18px);
	line-height: 1.65;
	color: #FCFBFF;
	opacity: 1;
	max-width: 650px;
	margin: 0 auto;
}

/* ============================================
   CATEGORY NAVIGATION
   ============================================ */

.faq-category-nav {
	display: flex;
	gap: clamp(24px, 4vw, 40px);
	margin-bottom: clamp(40px, 6vh, 56px);
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 4px;
	position: relative;
	z-index: 3;
}

.faq-category-button {
	font-family: 'Zalando Sans Expanded', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0 0 12px 0;
	border: none;
	background-color: transparent;
	color: rgba(252, 251, 255, 0.6);
	cursor: pointer;
	transition: color 0.3s ease;
	white-space: nowrap;
	position: relative;
}

.faq-category-button.active {
	color: #FCFBFF;
}

.faq-category-button:hover {
	color: #FCFBFF;
}

.faq-category-button:hover .nav-underline {
	width: 100%;
}

.nav-underline {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0%;
	background: linear-gradient(90deg, #FF4FF3 0%, #FFFFFF 50%, #D8FF63 100%);
	transition: width 0.3s ease;
	pointer-events: none;
}

.faq-category-button.active .nav-underline {
	width: 100%;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

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

.faq-item {
	background-color: rgba(252, 251, 255, 0.03);
	border: 1px solid rgba(252, 251, 255, 0.08);
	border-radius: 4px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: clamp(18px, 3vh, 24px) clamp(20px, 4vw, 28px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: transparent;
}

.faq-question-text {
	font-family: 'Zalando Sans Expanded', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #FCFBFF;
	line-height: 1.4;
	flex: 1;
}

.faq-item.open .faq-question-text {
	color: #d8ff63;
}

.faq-chevron {
	flex-shrink: 0;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
	transform: rotate(180deg);
}

/* ============================================
   FAQ ANSWER
   ============================================ */

.faq-answer-wrapper {
	max-height: 0 !important;
	overflow: hidden !important;
	transition: max-height 0.5s ease-in-out !important;
}

.faq-item.open .faq-answer-wrapper {
	max-height: 5000px !important;
	overflow: visible !important;
	opacity: 1 !important;
}

.faq-answer-content {
	padding: 0 clamp(20px, 4vw, 28px) clamp(20px, 4vh, 28px);
	border-top: 1px solid rgba(252, 251, 255, 0.06);
	display: block;
	position: relative;
}

.faq-answer-text {
	font-family: 'Figtree', sans-serif;
	font-size: 18px;
	line-height: 1.75;
	color: #FFFFFF;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* ============================================
   FAQ CTA BUTTONS (IN ANSWERS)
   ============================================ */

.faq-ctas {
	display: flex;
	gap: 12px;
	margin-top: clamp(20px, 3vh, 24px);
	flex-wrap: wrap;
}

/* FAQ CTA buttons now use global .btn-secondary class */

/* ============================================
   BOTTOM CTA SECTION
   ============================================ */

.faq-bottom-cta {
	margin-top: clamp(60px, 10vh, 80px);
	text-align: center;
}

.faq-bottom-cta-title {
	color: #FCFBFF;
	margin-bottom: clamp(16px, 2vh, 20px);
}

.faq-bottom-cta-description {
	font-family: 'Figtree', sans-serif;
	font-size: clamp(15px, 2.2vw, 17px);
	line-height: 1.6;
	color: #FCFBFF;
	opacity: 0.75;
	margin-bottom: clamp(28px, 4vh, 36px);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* FAQ bottom CTA button now uses global .btn-secondary class */

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 640px) {
	.faq-category-nav {
		gap: 20px;
		flex-direction: column;
		align-items: center;
	}

	.faq-category-button {
		font-size: 14px;
	}

	.faq-ctas {
		flex-direction: column;
	}

	.faq-cta-button {
		width: 100%;
		text-align: center;
	}

	.faq-bottom-cta {
		padding-top: 4rem;
		margin-top: 0;
	}
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-item {
	animation: fadeIn 0.3s ease;
}
