/* Artificial Grass Samples FAQ — matches yumiHome / Budget Grass FAQ style */

.yh-samples-faq {
	padding: 50px 0 60px;
	margin-top: 10px;
}

.yh-samples-faq > .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.yh-samples-faq__header {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 35px;
	padding: 28px 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.yh-samples-faq__title {
	margin: 0 0 12px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #222;
	line-height: 1.3;
}

.yh-samples-faq__intro {
	max-width: 620px;
	margin: 0 auto;
	color: #222;
	font-size: 1rem;
	line-height: 1.6;
}

.yh-samples-faq__list {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.yh-samples-faq__item {
	background: #fff;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.25s ease;
}

.yh-samples-faq__item[open] {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.yh-samples-faq__item summary {
	padding: 18px 22px;
	font-weight: 600;
	font-size: 1rem;
	color: #333;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.yh-samples-faq__item summary::-webkit-details-marker {
	display: none;
}

.yh-samples-faq__item summary::after {
	content: '+';
	flex-shrink: 0;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	color: #33594a;
}

.yh-samples-faq__item[open] summary::after {
	content: '−';
	color: #33594a;
}

.yh-samples-faq__answer {
	padding: 0 22px 20px;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.7;
}

.yh-samples-faq__answer p {
	margin: 0;
}

.yh-samples-faq__answer a {
	color: #f6a265;
	text-decoration: none;
	font-weight: 500;
}

.yh-samples-faq__answer a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.yh-samples-faq {
		padding: 35px 0 45px;
	}

	.yh-samples-faq__header {
		padding: 22px 20px;
		margin-bottom: 28px;
	}

	.yh-samples-faq__title {
		font-size: 1.45rem;
	}

	.yh-samples-faq__intro {
		font-size: 0.95rem;
	}

	.yh-samples-faq__item summary {
		padding: 15px 18px;
		font-size: 0.95rem;
	}

	.yh-samples-faq__answer {
		padding: 0 18px 16px;
		font-size: 0.9rem;
	}
}
