/* Bundle Campaigns: shared tokens */
.lmb-bundle-offer,
.lmb-bundle-cart-upsell {
	--lmb-bc-ink: #282828;
	--lmb-bc-cream: #FCFBF7;
	--lmb-bc-muted: rgba(40, 40, 40, 0.6);
	--lmb-bc-border: rgba(40, 40, 40, 0.12);
}

.lmb-bundle-offer__empty-notice {
	padding: 12px 16px;
	background: #fff3cd;
	border: 1px dashed #d1a72c;
	color: #6b5600;
	font-size: 13px;
}

/* ---- Product page box ---- */
.lmb-bundle-offer {
	margin: 28px 0;
}

.lmb-bundle-offer__heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-family: "IvyPresto Display", serif;
	font-size: 19px;
	color: var(--lmb-bc-ink);
	margin: 0 0 14px;
}

.lmb-bundle-offer__badge,
.lmb-bundle-cart-upsell__badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--lmb-bc-ink);
	color: var(--lmb-bc-cream);
	font-family: Satoshi, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.lmb-bundle-offer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.lmb-bo-card {
	display: flex;
	flex-direction: column;
	background: var(--lmb-bc-cream);
	border: 1px solid var(--lmb-bc-border);
	border-radius: 14px;
	overflow: hidden;
	text-align: center;
	transition: transform .35s ease, box-shadow .35s ease;
}

.lmb-bo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px -20px rgba(40, 40, 40, 0.35);
}

.lmb-bo-card__image {
	display: block;
	aspect-ratio: 1 / 1;
	background: #F4F2EC;
	overflow: hidden;
}

.lmb-bo-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lmb-bo-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 14px 18px;
}

.lmb-bo-card__name {
	font-family: "IvyPresto Display", serif;
	font-size: 15px;
	line-height: 1.3;
	color: var(--lmb-bc-ink);
	text-decoration: none;
}

.lmb-bo-card__price {
	font-family: Satoshi, sans-serif;
	font-size: 13px;
	color: var(--lmb-bc-muted);
}

/*
 * Matches the specificity workaround in pairs-with-products.css — the site's
 * global Elementor Kit CSS resets buttons via a compound selector that
 * otherwise outranks a plain single class.
 */
.lmb-bundle-offer .lmb-bo-card__add {
	margin-top: auto;
	padding: 11px 14px 9px;
	border: 1px solid var(--lmb-bc-ink);
	border-radius: 8px;
	background: transparent;
	color: var(--lmb-bc-ink);
	font-family: Sackersgothic, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease;
}

.lmb-bundle-offer .lmb-bo-card__add:hover:not(:disabled) {
	background: var(--lmb-bc-ink);
	color: var(--lmb-bc-cream);
}

.lmb-bundle-offer .lmb-bo-card__add--disabled,
.lmb-bundle-offer .lmb-bo-card__add:disabled {
	background: transparent;
	color: rgba(40, 40, 40, 0.35);
	border-color: rgba(40, 40, 40, 0.2);
	cursor: not-allowed;
}

/* ---- Cart / mini-cart box ---- */
.lmb-bundle-cart-upsell {
	padding: 18px 20px 6px;
	border-top: 1px solid rgba(40, 40, 40, 0.1);
	border-bottom: 1px solid rgba(40, 40, 40, 0.1);
}

.lmb-bundle-cart-upsell__heading {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-family: "IvyPresto Display", serif;
	font-size: 16px;
	color: var(--lmb-bc-ink);
	margin: 0 0 14px;
}

.lmb-bundle-cart-upsell__row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.lmb-bundle-cart-upsell__image {
	flex: 0 0 auto;
	display: block;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	overflow: hidden;
	background: #F4F2EC;
}

.lmb-bundle-cart-upsell__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lmb-bundle-cart-upsell__info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.lmb-bundle-cart-upsell__name {
	font-family: Satoshi, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--lmb-bc-ink);
	text-transform: uppercase;
	letter-spacing: .02em;
}

.lmb-bundle-cart-upsell__price {
	font-family: Satoshi, sans-serif;
	font-size: 12px;
	color: var(--lmb-bc-muted);
}

.lmb-bundle-cart-upsell .lmb-bundle-cart-upsell__add {
	flex: 0 0 auto;
	padding: 9px 18px;
	border: 1px solid var(--lmb-bc-ink);
	border-radius: 999px;
	background: transparent;
	color: var(--lmb-bc-ink);
	font-family: Satoshi, sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease;
}

.lmb-bundle-cart-upsell .lmb-bundle-cart-upsell__add:hover:not(:disabled) {
	background: var(--lmb-bc-ink);
	color: var(--lmb-bc-cream);
}

@media (max-width: 767px) {
	.lmb-bundle-offer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.lmb-bo-card__body {
		padding: 14px 12px 16px;
	}

	.lmb-bo-card__name {
		font-size: 14px;
	}
}
