.baked-goods h4 {
	margin-bottom: 0;
}

.baked-goods h4, .baked-goods h6 {
	color: var(--primary-color);
}

.baked-goods .baked-good > img {
	margin-bottom: 43px;
	margin-top: 43px;
}

.baked-goods .details-link {
	border-bottom: 2px dotted var(--primary-color);
	width: 80%;
	display: block;
	margin-bottom: 50px;
	font-size: 1.25em;
	color: var(--primary-color);
}

.baked-goods .details-link::after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 126 88'%3E%3Cpath d='M2 23a226 226 0 0 0 23 36c7 10 18 26 29 29 11 2 22-16 29-24l39-42c9-10-1-29-11-19L81 36 67 50c-2 3-6 9-10 12-7-5-15-15-21-23A216 216 0 0 1 17 8C11-5-5 10 2 23'/%3E%3C/svg%3E");
	width: 22px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	float: right;
	margin-top: 3px;
	transform: rotate(0deg);
	transition: transform 0.5s;
}

.baked-goods .baked-good.active .details-link::after {
	transform: rotate(180deg);
}

.baked-goods .dropdown-content {
	width: 100vw !important;
	margin-bottom: 60px;
	display: none;
}

.baked-goods .dropdown-content > div.details-content {
	background-color: #fff;
	padding: 40px 40px 0 40px !important;
	margin-left: 15px;
	margin-right: 15px;
	width: calc(100% - 90px) !important;
	box-shadow: 0 5px 12px #00000029;
}

@media screen and (min-width: 550px) {
	/* here we have 2 columns */
	.baked-goods > div:nth-child(2n+0) .dropdown-content {
		margin-left: calc(-100% - 45px) !important;
	}
}

@media screen and (min-width: 850px) {
	/* here we have 3 columns */
	.baked-goods > div:nth-child(2n+0) .dropdown-content {
		margin-left: 0 !important;
	}

	.baked-goods > div:nth-child(3n-1) .dropdown-content {
		margin-left: calc(-100% - 45px) !important;
	}

	.baked-goods > div:nth-child(3n+0) .dropdown-content {
		margin-left: calc(-200% - 75px) !important;
	}
}

.baked-goods .dropdown-content .header-col {
	padding-bottom: 0;
}

.baked-goods .dropdown-content .ingredients-col {
	padding-bottom: 0px;
}

.baked-goods .dropdown-content .ingredients-col p:last-of-type {
	margin-bottom: 0;
}

.baked-goods .dropdown-content .icons {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding-bottom: 0px;
	flex-wrap: wrap;
}

.baked-goods .dropdown-content .icons .icon {
	display: flex;
	align-items: center;
	height: 54px;
}

.baked-goods .dropdown-content .icons .icon .label {
	margin-left: 15px;
	font-size: 1.2em;
}

.baked-goods .dropdown-content .nutrient-col {
	display: flex;
	flex-direction: column;
}

.baked-goods .dropdown-content .nutirent-row {
	flex-grow: 1;
}

.baked-goods .baked-good .image-container {
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 64px;
}

.baked-goods .baked-good .image-container .vegan-icon {
	position: absolute;
	top: 20px;
	right: 35px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.baked-goods .baked-good .image-container.hover,
.baked-goods .baked-good.active .image-container {
	opacity: 1;
}

.baked-goods .baked-good .default-image {
	opacity: 1;
	transition: opacity 0.2s;
}

.baked-goods .baked-good.active .default-image,
.baked-goods .baked-good .image-container.hover .default-image {
	opacity: 0;
}

.baked-goods .headline-inline {
	display: inline-block;
}

@media screen and (max-width: 549px) {
	.baked-goods .details-link::after {
		width: 16px;
		height: 12px;
		margin-top: 0px;
	}

	.baked-goods .baked-good .image-container {
		margin-bottom: 24px;
	}

	.baked-goods .dropdown-content > div.details-content {
		padding: 16px 0 0 0 !important;
		width: calc(100% - 30px) !important;
	}

	.baked-goods .dropdown-content .icons .icon {
		height: 30px;
		margin-bottom: 10px;
	}

	.baked-goods .dropdown-content .icons .icon img {
		height: 30px;
		width: 30px;
		object-fit: contain;
		object-position: center center;
	}

	.baked-goods .details-content .col {
		padding-bottom: 12px;
	}
}

@media screen and (min-width: 550px) and (max-width: 849px) {
	.baked-goods .details-link::after {
		width: 20px;
		height: 16px;
		margin-top: 0px;
	}

	.baked-goods .baked-good .image-container {
		margin-bottom: 24px;
	}

	.baked-goods .dropdown-content > div.details-content {
		padding: 24px 10px 0 10px !important;
	}

	.baked-goods .dropdown-content .icons .icon img {
		height: 30px;
		width: 30px;
		object-fit: contain;
		object-position: center center;
	}
}
