/* Gonda Rasoi FAQ Accordion — widget styles
   Saare class names "grfaq-" prefix ke saath hain taaki theme/plugin ke
   kisi bhi existing CSS se conflict na ho. */

.grfaq-list {
	max-width: 820px;
	margin: 50px auto 0;
	display: grid;
	gap: 14px;
}

.grfaq-item {
	background: #FFFFFF;
	border: 1px solid #E8C45A;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(104, 13, 10, .08);
}

.grfaq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	font-weight: 600;
	color: #680D0A;
	font-size: 15.5px;
}

.grfaq-q:focus-visible {
	outline: 2px solid #D89A16;
	outline-offset: -2px;
}

.grfaq-q .plus {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #FFF9E9;
	border: 1px solid #E8C45A;
	display: grid;
	place-items: center;
	flex: none;
	transition: transform .35s ease;
	font-size: 16px;
	color: #D89A16;
}

.grfaq-item.open .grfaq-q .plus {
	transform: rotate(135deg);
}

.grfaq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}

.grfaq-a p {
	margin: 0;
	padding: 0 24px 20px;
	font-size: 14.5px;
	opacity: .82;
	line-height: 1.7;
}
