/* Product FAQ accordion — matches reference Tailwind-based design */

.aroma-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.aroma-faq-accordion .aroma-faq-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 1.25rem;
}

.aroma-faq-item {
	border: 1px solid #f3f4f6;
	border-radius: 1rem;
	overflow: hidden;
	background: #f9fafb;
}

.aroma-faq-toggle {
	width: 100%;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-weight: 700;
	font-size: 1rem;
	color: #111827;
	text-align: left;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: color 0.15s ease;
	line-height: 1.4;
}

/* Explicit overrides to prevent Elementor kit from setting background/color/border-radius */
body .aroma-faq-toggle {
	background-color: transparent;
	background: transparent;
	color: #111827;
	border-radius: 0;
	font-family: inherit;
	font-weight: 700;
}

body .aroma-faq-toggle:hover,
body .aroma-faq-toggle:focus,
body .aroma-faq-toggle:active {
	background-color: transparent;
	background: transparent;
	color: #1660aa;
	outline: none;
}

.aroma-faq-toggle:hover {
	color: #1660aa;
	background: transparent;
}

.aroma-faq-icon {
	flex-shrink: 0;
	color: #9ca3af;
	transition: transform 0.3s ease, color 0.15s ease;
}

.aroma-faq-item--open .aroma-faq-toggle {
	color: #1660aa;
	background: transparent;
}

body .aroma-faq-item--open .aroma-faq-toggle {
	background-color: transparent;
	background: transparent;
	color: #1660aa;
}

.aroma-faq-item--open .aroma-faq-icon {
	color: #1660aa;
	transform: rotate(180deg);
}

.aroma-faq-content {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
}

.aroma-faq-item--open .aroma-faq-content {
	max-height: 600px;
	opacity: 1;
	padding-bottom: 1.25rem;
}

.aroma-faq-content p {
	color: #4b5563;
	line-height: 1.625;
	margin: 0;
}

/* Elementor editor placeholder */
.aroma-faq-placeholder {
	padding: 1.5rem;
	border: 2px dashed #d1d5db;
	border-radius: 0.75rem;
	text-align: center;
	color: #6b7280;
	font-size: 0.875rem;
}
