/* Bloom Lab Bundles & Routine Offers */
.blb-bundle-contents,
.blb-product-offer,
.blb-cart-offers,
.blb-checkout-offers {
	margin: 24px 0;
	padding: 22px;
	border: 1px solid #e8ded4;
	background: #fcfaf7;
}

.blb-bundle-contents h3,
.blb-product-offer h2,
.blb-cart-offers h2,
.blb-checkout-offers h2 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.25;
}

.blb-bundle-components {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 14px 0;
}

.blb-bundle-component {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 9px;
	background: #fff;
	border: 1px solid #eee5dd;
	font-size: 12px;
	line-height: 1.35;
}

.blb-bundle-component img {
	width: 44px;
	height: 44px;
	object-fit: cover;
}

.blb-bundle-fixed,
.blb-offer-message,
.blb-cart-offers > p,
.blb-checkout-offers > p {
	margin: 0;
	color: #766f69;
	font-size: 13px;
	line-height: 1.5;
}

.blb-product-offer h2,
.blb-cart-offers h2,
.blb-checkout-offers h2 {
	font-size: 20px;
}

.blb-offer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 16px;
}

.blb-offer-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: #fff;
	border: 1px solid #e8ded4;
}

.blb-product-offer .blb-offer-card {
	margin-top: 16px;
}

.blb-offer-image {
	flex: 0 0 72px;
}

.blb-offer-image img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.blb-offer-copy {
	min-width: 0;
}

.blb-offer-copy h3 {
	margin: 4px 0 4px;
	font-size: 15px;
	line-height: 1.3;
}

.blb-offer-price {
	margin: 4px 0 10px;
	font-size: 14px;
}

.blb-offer-price del {
	color: #8b8580;
	margin-right: 5px;
}

.blb-offer-price ins {
	color: #aa7f56;
	font-weight: 700;
	text-decoration: none;
}

.blb-add-offer.button {
	min-height: auto;
	padding: 9px 13px;
	border-radius: 0;
	font-size: 12px;
	line-height: 1.2;
}

.blb-add-offer.button[disabled] {
	opacity: .7;
	cursor: wait;
}

.blb-bundle-thumb {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3px;
	width: 100%;
	height: 100%;
	background: #faf7f4;
}

.blb-bundle-thumb > span,
.blb-bundle-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.blb-bundle-thumb-2 > span {
	grid-column: span 1;
}

.blb-image-note {
	margin: 8px 0;
	font-size: 12px;
	color: #766f69;
}

@media (max-width: 767px) {
	.blb-bundle-contents,
	.blb-product-offer,
	.blb-cart-offers,
	.blb-checkout-offers {
		padding: 16px;
	}

	.blb-offer-grid {
		grid-template-columns: 1fr;
	}

	.blb-bundle-components {
		grid-template-columns: 1fr;
	}
}

