.pomona-acordeon-producto {
	width: 100%;
}

.pomona-acordeon-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	background: none;
	border: none;
	border-radius: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}

.pomona-acordeon-title {
	margin: 0;
}

.pomona-acordeon-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
	transition: transform 0.25s ease;
}

.pomona-acordeon-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.pomona-acordeon-item.is-active .pomona-acordeon-icon {
	transform: rotate(180deg);
}

.pomona-acordeon-content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}
