.c-product-free-bundle {
	background: #fff;
	border: .0625rem solid var(--secondary-light);
	border-radius: .5rem;
	box-shadow: 0 .125rem .625rem rgba(0,0,0,.15);
	overflow: hidden;
    margin-top: .5rem;
}

.c-product-free-bundle__header {
	align-items: center;
	background: var(--secondary-lightest);
	display: flex;
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	justify-content: space-between;
	line-height: 1.1;
	padding: .75rem 1rem;
	text-transform: uppercase;
}

.c-product-free-bundle__header-label {
	align-items: center;
	display: flex;
	gap: .375rem;
    color: #444346;
}

.c-product-free-bundle__included-label {
	align-items: center;
	color: var(--secondary-dark);
	display: flex;
	font-size: 14px;
	gap: .5rem;
	text-align: right;
}

.c-product-free-bundle__check-icon {
	align-items: center;
	background: var(--secondary-dark);
	border-radius: 50%;
	display: flex;
	height: 1rem;
	justify-content: center;
	width: 1rem;
}

.c-product-free-bundle__check-icon:before {
	border-bottom: .125rem solid #fff;
	border-left: .125rem solid #fff;
	content: "";
	display: block;
	height: .25rem;
	transform: rotate(-45deg);
	width: .5rem;
}

.c-product-free-bundle__content {
	padding: 1rem;
}

.c-product-free-bundle__title-row {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.c-product-free-bundle__title {
	color: var(--text);
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.c-product-free-bundle__title p {
	margin: 0;
	line-height: inherit;
}

.c-product-free-bundle__title strong {
	color: var(--secondary-dark);
    font-family: var(--font-display);
}

.c-product-free-bundle__subtitle {
	font-family: var(--font-body-light);
	font-size: 16px;
	margin-top: .25rem;
}

.c-product-free-bundle__price {
	color: var(--secondary-dark);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
	white-space: nowrap;
}

.c-product-free-bundle__free-text, .c-product-free-bundle__compare-price {
	font-size: var(--font-static-lg);
}

.c-product-free-bundle__compare-price {
	color: var(--text);
	font-weight: 400;
}

.c-product-free-bundle__value-text {
	font-size: var(--font-static-sm);
	margin-top: .25rem;
}

.c-product-free-bundle__items {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 1rem;
	text-align: center;
}

.c-product-free-bundle__image-wrapper {
	background: var(--secondary-lightest);
	border-radius: .35rem;
	overflow: hidden;
    padding: 1rem;
}

.c-product-free-bundle__image-wrapper img {
	object-fit: contain;
}

.c-product-free-bundle__item-label {
	font-family: 'urw-din';
	font-size: .75rem;
	font-weight: 900;
	line-height: 1.2;
	margin-top: .5rem;
	padding-inline: .75rem;
}

.c-product-free-bundle__gift-icon{
	width:1rem;
	height:1rem;
	object-fit:contain;
}

@media screen and (max-width: 479px) {
	.c-product-free-bundle__included-label {
        width: 33%;
    }

	.c-product-free-bundle__item-label {
		padding-inline: 0;
	}

	.c-product-free-bundle__price {
		line-height: 1.3;
	}

	.c-product-free-bundle__free-text, .c-product-free-bundle__compare-price {
		font-size: var(--font-static-md);
	}

	.c-product-free-bundle__items {
		gap: 1rem;
	}

	.c-product-free-bundle__item-label {
		padding-inline: 0;
	}
}