.h2-complete-setup {
	/* Primary text + secondary: eyebrow/small labels need ~4.5:1+ on panel (#ebebef). */
	--h2-cs-text: #1d1d1f;
	--h2-cs-text-muted: #494950;
	--h2-cs-text-eyebrow: #3d3d44;
	--h2-cs-text-del: #575760;
	--h2-cs-sale: #b42318;
	--h2-cs-bg-panel: #ebebef;
	--h2-cs-bg-card: #fff;
	--h2-cs-bg-hover: #e4e4e8;
	--h2-cs-success: #2d8a54;
	--h2-cs-success-hover: #246f45;
	--h2-cs-success-ghost: rgb(45 138 84 / 0.09);
	--h2-cs-success-ghost-soft: rgb(45 138 84 / 0.045);
	--h2-cs-selected-wash: rgb(232 245 233 / 0.88);
	--h2-cs-shadow-panel: 0 1px 3px rgb(0 0 0 / 0.04);
	--h2-cs-shadow-row: 0 1px 3px rgb(0 0 0 / 0.04);
	--h2-cs-shadow-row-hover: 0 4px 16px rgb(0 0 0 / 0.06);
	--h2-cs-shadow-row-selected: 0 4px 18px rgb(45 138 84 / 0.12);
	--h2-cs-shadow-main: 0 1px 3px rgb(0 0 0 / 0.05);
	--h2-cs-ring-row: 0 0 0 1px rgb(0 0 0 / 0.08);
	--h2-cs-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
	--h2-cs-duration: 0.35s;

	box-sizing: border-box;
	clear: both;
	width: 100%;
	/*
	 * Match `.h2-pdp-trust` / `.woocommerce-tabs.wc-tabs-wrapper`: max-width on this
	 * outer section (h2-pdp-layout.php inline), horizontal gutter here, grey panel on __inner.
	 */
	margin: 1rem auto;
	padding-right: 1em;
	padding-left: 1em;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 993px) {
	.single-product.h2-pdp div.product > .h2-complete-setup {
		padding-right: 2.617924em;
		padding-left: 2.617924em;
	}
}

/* Grey panel — fills the section content box (same pattern as `.h2-pdp-trust__inner`) */
.h2-complete-setup__inner {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	background-color: var(--h2-cs-bg-panel);
	background-image: radial-gradient(ellipse 100% 85% at 100% 0%, var(--h2-cs-success-ghost-soft), transparent 58%);
	border: 1px solid rgb(0 0 0 / 0.07);
	border-radius: 0.75rem;
	box-shadow: var(--h2-cs-shadow-panel);
	/* Slightly tighter than before: grey panel → white row cards */
	padding: 0.875rem 1em 1.125rem;
}

@media (min-width: 769px) {
	.h2-complete-setup__inner {
		padding: 1.0625rem 1em 1.375rem;
	}
}

@media (max-width: 992px) {
	.single-product div.product > .h2-complete-setup .h2-complete-setup__inner {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
	}
}

/* Header block — scannable hierarchy (eyebrow → title → benefit line) */
.h2-complete-setup__header {
	margin-bottom: 0.25rem;
}

.h2-complete-setup__eyebrow {
	margin: 0 0 0.5rem;
	padding: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--h2-cs-text-eyebrow);
}

/* Title */
.h2-complete-setup__title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 600;
	color: var(--h2-cs-text);
	letter-spacing: -0.02em;
}

@media (min-width: 769px) {
	.h2-complete-setup__title {
		font-size: 1.375rem;
		line-height: 1.15;
	}

	.h2-complete-setup__subtitle {
		font-size: 1rem;
	}
}

/* Subtitle — body weight, comfortable measure (CRO: clarity over cleverness) */
.h2-complete-setup__subtitle {
	margin: 0 0 0.5rem;
	max-width: 40rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--h2-cs-text-muted);
	font-weight: 400;
}

/* Main PDP row + #h2-bundle-sells-mount are siblings — flex gap separates “your product” from add-ons */
.h2-complete-setup__mount {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.125rem;
	margin-top: 0;
	margin-bottom: 0.375rem;
	padding-top: 0;
}

.h2-complete-setup__mount #h2-bundle-sells-mount {
	width: 100%;
	min-width: 0;
}

@media (min-width: 769px) {
	.h2-complete-setup__mount {
		gap: 1.25rem;
	}
}

.h2-complete-setup__mount .bundle_sells_form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/*
 * When rendered inside form.cart the bundle_sells_form is visible by default.
 * The sr-only rule is overridden by the more specific rule below.
 */

/* Never show a duplicate bundle-sells block inside WC’s variation placeholder (canonical copy lives in #mount). */
div.product .summary .single_variation .bundle_sells_form {
	display: none !important;
}

/* Visible bundle-sells in visual location (overrides PB sr-only rule on form.cart .bundle_sells_form). */
.h2-complete-setup #h2-bundle-sells-visual-anchor .bundle_sells_form,
.h2-complete-setup #h2-bundle-sells-mount .bundle_sells_form {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	white-space: normal !important;
	border: 0 !important;
	display: flex !important;
	flex-direction: column;
}

/*
 * Product Bundles default: `.details` is float:right; width:80%; padding-left:1.5–2rem.
 * Reset must win or the float + 80% width breaks our grid and lets text bleed left over the checkbox.
 */
.h2-complete-setup div.bundled_product_summary > .details,
.h2-complete-setup .h2-main-product-row > .details,
.h2-complete-setup .h2-pb-bundle-sell-item > .details,
.h2-complete-setup .bundle_sells_form .h2-pb-bundle-sell-item.bundled_product_summary .details {
	float: none !important;
	clear: both !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box !important;
}

.h2-complete-setup div.bundled_product_summary > .bundled_product_images,
.h2-complete-setup .h2-main-product-row > .bundled_product_images,
.h2-complete-setup .h2-pb-bundle-sell-item > .bundled_product_images {
	float: none !important;
	clear: none !important;
	margin: 0 !important;
}

/* Main product row (always pre-selected at top) - reuses same structure */
.h2-complete-setup .h2-main-product-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;
	box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
	background: var(--h2-cs-bg-card);
	border: none !important;
	border-radius: 0.75rem;
	margin-bottom: 0 !important;
	padding: 0.75rem 1rem !important;
	cursor: default;
	box-shadow:
			var(--h2-cs-shadow-main),
			inset 3px 0 0 0 var(--h2-cs-success),
			var(--h2-cs-ring-row);
	transition: box-shadow var(--h2-cs-duration) var(--h2-cs-ease), background var(--h2-cs-duration) var(--h2-cs-ease);
}

.h2-complete-setup .h2-main-product-row .bundled_product_images {
	display: block;
	flex: 0 0 auto;
	width: 3rem;
	max-width: 3rem;
	align-self: center;
	margin-top: 0;
	line-height: 0;
}

.h2-complete-setup .h2-main-product-row .bundled_product_images img,
.h2-complete-setup .h2-main-product-row .bundled_product_images .h2-bs-bundle-sell-thumb-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.375rem;
	object-fit: cover;
	aspect-ratio: 1;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

.h2-complete-setup .h2-main-product-row > .details {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 0.75rem;
	row-gap: 0.25rem;
	flex: 1 1 auto;
	min-width: 0;
}

.h2-complete-setup .h2-main-product-row .bundled_product_optional_checkbox {
	order: 1;
	flex: 0 0 auto;
}

.h2-complete-setup .h2-main-product-row .bundled_product_title {
	order: 2;
	flex: 1 1 8rem;
	min-width: 0;
	margin: 0;
	font-weight: 600;
	color: var(--h2-cs-text);
	letter-spacing: -0.015em;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1875rem;
}

.h2-complete-setup .h2-main-product-row .bundled_product_title .h2-bs-main-product-name {
	display: block;
	min-width: 0;
}

/* Secondary line — “This product” under the name + SKU */
.h2-complete-setup .h2-main-product-row .bundled_product_title .h2-bs-this-product {
	display: block;
	margin: 0;
	padding: 0;
	max-width: 100%;
	font-style: italic;
	font-weight: 500;
	font-size: 0.8125rem;
	line-height: 1.3;
	letter-spacing: 0.01em;
	color: var(--h2-cs-text-del);
}

.h2-complete-setup .h2-main-product-row .price {
	order: 3;
	flex: 0 0 auto;
	margin: 0 0 0 auto;
	text-align: right;
	white-space: nowrap;
}

.h2-complete-setup .h2-main-product-row .bundled_product_optional_checkbox input:not( :disabled ) {
	accent-color: var(--h2-cs-success);
}

/*
 * Bundle-sell qty — horizontal stepper [−] [input] [+] (large tap targets; single visual group).
 *
 * Shoptimizer pairs `.quantity-button` with `.quantity-nav`: buttons are position:absolute
 * (full width × 50% height each). Without `.quantity-nav`, those rules stack −/+ on the input
 * and `.product form.cart .quantity { float:left }` collapses the box to ~input width only.
 * Reset buttons to normal flow + strip mask chevrons so flex sizing applies.
 */
.h2-complete-setup .bundle_sells_form .h2-pb-bundle-sell-item:not(.has_qty_input) .bundled_item_after_cart_details.bundled_item_button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem 0.75rem;
	width: 100%;
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgb(0 0 0 / 0.06);
	align-self: stretch;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity {
	position: relative;
	float: none;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	align-self: flex-end;
	width: max-content;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	vertical-align: middle;
	border-radius: 0.375rem;
	overflow: hidden;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
	border: 1px solid rgb(0 0 0 / 0.14);
	background: var(--h2-cs-bg-card);
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .quantity-button.h2-bs-qty-step {
	position: static;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	height: auto;
	background-image: none;
	background-repeat: no-repeat;
	background-size: auto;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .quantity-button::before {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	mask-image: none !important;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .qty,
.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity input.input-text {
	flex: 0 0 auto;
	width: 2.25rem;
	min-width: 2rem;
	height: auto;
	min-height: 2rem;
	margin: 0;
	padding: 0 0.15em;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--h2-cs-text);
	border: none;
	border-left: 1px solid rgb(0 0 0 / 0.1);
	border-right: 1px solid rgb(0 0 0 / 0.1);
	border-radius: 0;
	background: var(--h2-cs-bg-card);
	box-shadow: none;
	-moz-appearance: textfield;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .qty:focus,
.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity input.input-text:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px rgb(45 138 84 / 0.35);
	z-index: 1;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity input::-webkit-outer-spin-button,
.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* − / + compact (bundle-sell row; tap padding via row chrome) */
.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step {
	flex: 0 0 2rem;
	width: 2rem;
	min-width: 2rem;
	min-height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1;
	color: var(--h2-cs-text);
	background: rgb(0 0 0 / 0.03);
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	transition: background-color 0.15s ease;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step:hover {
	background: rgb(45 138 84 / 0.08);
	color: var(--h2-cs-success);
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step:active {
	background: rgb(45 138 84 / 0.14);
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step:focus {
	outline: 0;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step:focus-visible {
	outline: 0.2rem solid #2491ff;
	outline-offset: -2px;
	z-index: 2;
}

.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .quantity-button.disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

/*
 * Has qty: DOM order is stock (.bundled_item_cart_details) then qty (.bundled_item_after_cart_details).
 * Flex order shows [− input +] first, stock copy to the right — reads as “adjust qty · here’s availability”.
 * ≤480px: stack stock under the stepper so long titles don’t squeeze the row.
 */
.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_content {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.375rem 0.5rem;
	min-width: 0;
	width: 100%;
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	box-sizing: border-box;
}

.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_details {
	flex: 0 1 auto;
	min-width: 0;
	order: 2;
	font-size: 0.8125rem;
	line-height: 1.25;
}

.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_details p {
	margin: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_after_cart_details {
	margin-top: 0;
	order: 1;
}

.h2-complete-setup .bundle_sells_form .h2-pb-bundle-sell-item.has_qty_input .bundled_item_after_cart_details.bundled_item_button {
	display: flex;
	width: auto;
	flex: 0 0 auto;
	align-self: center;
	align-items: center;
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	justify-content: flex-start;
	gap: 0;
}

@media (max-width: 480px) {
	.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_content {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_after_cart_details {
		align-self: flex-start;
	}
}

@media (max-width: 768px) {
	.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details.bundled_item_button {
		justify-content: stretch;
	}

	.h2-complete-setup .bundle_sells_form .h2-pb-bundle-sell-item.has_qty_input .bundled_item_after_cart_details.bundled_item_button {
		justify-content: flex-start;
	}

	.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity {
		margin-left: 0;
		max-width: 100%;
	}

	/* Slightly larger tap targets on phones only (still compact vs previous 2.75rem) */
	.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .h2-bs-qty-step {
		flex: 0 0 2.25rem;
		width: 2.25rem;
		min-width: 2.25rem;
		min-height: 2.25rem;
		font-size: 1.0625rem;
	}

	.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity .qty,
	.h2-complete-setup .bundle_sells_form .bundled_item_after_cart_details .quantity input.input-text {
		min-height: 2.25rem;
		width: 2.125rem;
		min-width: 2rem;
		font-size: 0.875rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item.bundled_product_summary:not(.h2-main-product-row) {
		align-items: flex-start;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item:not(.h2-main-product-row) .bundled_product_images {
		align-self: flex-start;
		margin-top: 0.125rem;
	}
}

/*
 * Regular bundle sell rows. Override WC Product Bundles single-product.css on
 * .bundled_product_summary (padding-bottom/margin-bottom ~1.618rem + faint border-bottom)
 * which breaks a uniform 2px box and vertical balance.
 */
.h2-complete-setup .h2-pb-bundle-sell-item.bundled_product_summary {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;
	box-sizing: border-box;
	/* Row click toggles checkbox — avoid text selection / mobile tap tint */
	user-select: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
	background: var(--h2-cs-bg-card);
	margin-bottom: 0 !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	padding-left: 1rem !important;
	padding-right: 1rem !important;
	border: none !important;
	border-radius: 0.75rem;
	box-shadow: var(--h2-cs-shadow-row), var(--h2-cs-ring-row);
	transition:
			box-shadow var(--h2-cs-duration) var(--h2-cs-ease),
			background var(--h2-cs-duration) var(--h2-cs-ease);
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images {
	display: block !important;
	flex: 0 0 auto;
	width: 3rem;
	max-width: 3rem;
	align-self: center;
	margin-top: 0;
	line-height: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images figure,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images .bundled_product_image {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images img,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images .h2-bs-bundle-sell-thumb-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.375rem;
	object-fit: cover;
	aspect-ratio: 1;
	box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

/* Row click should toggle selection; disable zoom/lightbox hit targets on accessory rows */
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images a {
	pointer-events: none;
	cursor: default;
}

/*
 * PB JS adds .small_width when the form is narrow — its CSS sets thumbs to max-width:50%,
 * which blows up add-on images on mobile. Keep the same fixed thumb as .h2-main-product-row.
 */
.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item.bundled_product_summary,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item.bundled_product_summary {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
}

.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item .bundled_product_images,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item .bundled_product_images {
	float: none !important;
	width: 3rem !important;
	max-width: 3rem !important;
	flex: 0 0 3rem !important;
}

.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item .bundled_product_images figure,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item .bundled_product_images figure,
.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item .bundled_product_images a,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item .bundled_product_images a {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item .bundled_product_images img,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item .bundled_product_images img {
	width: 100% !important;
	max-width: 100% !important;
	margin-bottom: 0 !important;
}

.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item:not(.thumbnail_hidden) .details,
.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item:not(.thumbnail_hidden) .details {
	float: none !important;
	width: auto !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item {
	cursor: pointer;
}

.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item:active {
	background: var(--h2-cs-bg-hover);
}

/* Hover / checked — neutral lift; selected = soft success wash (positive add-on) */
.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item:hover:not(:has(.bundled_product_checkbox:disabled)):not(:has(.bundled_product_checkbox:checked)) {
	border: none !important;
	box-shadow: var(--h2-cs-shadow-row-hover), var(--h2-cs-ring-row);
	background: var(--h2-cs-bg-hover);
}

.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item:has(.bundled_product_checkbox:checked) {
	border: none !important;
	box-shadow: var(--h2-cs-shadow-row-selected), var(--h2-cs-ring-row);
	background: linear-gradient(180deg, var(--h2-cs-bg-card) 0%, var(--h2-cs-selected-wash) 100%);
}

.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item:has(.bundled_product_checkbox:checked):hover:not(:has(.bundled_product_checkbox:disabled)) {
	border: none !important;
	box-shadow: var(--h2-cs-shadow-row-hover), var(--h2-cs-ring-row);
	background: linear-gradient(180deg, var(--h2-cs-bg-card) 0%, var(--h2-cs-success-ghost) 100%);
}

/*
 * has_qty rows: the vertical gradient + grid row-gap often reads as a horizontal “line” between
 * the title row and stock/qty — flat fill + zero row-gap removes that seam.
 */
.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item.has_qty_input:has(.bundled_product_checkbox:checked) {
	border: none !important;
	box-shadow: var(--h2-cs-shadow-row-selected), var(--h2-cs-ring-row);
	background: var(--h2-cs-selected-wash) !important;
}

.h2-complete-setup .bundled_product.bundled_product_summary.h2-pb-bundle-sell-item.has_qty_input:has(.bundled_product_checkbox:checked):hover:not(:has(.bundled_product_checkbox:disabled)) {
	border: none !important;
	box-shadow: var(--h2-cs-shadow-row-hover), var(--h2-cs-ring-row);
	background: var(--h2-cs-success-ghost) !important;
}

/* WooCommerce Product Bundles: div.bundled_product_summary { border-bottom } — extra specificity */
.woocommerce .h2-complete-setup .bundle_sells_form .bundled_product.bundled_product_summary {
	border-bottom: none !important;
	border-top: none !important;
}

/* PB ships an empty “permalink” span — keep it hidden unless we add .h2-bs-view-product-wrap */
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title_link:not(.h2-bs-view-product-wrap) {
	display: none;
}

/* Row click toggles checkbox; real links must stay clickable (handled in h2-bundle-sells-relocate.js) */
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title a:not(.h2-bs-view-product) {
	pointer-events: none;
	cursor: inherit;
	color: inherit;
	text-decoration: none;
}

/* Wrapper from theme bundled-item-title.php — single full-width column for name + View product */
.h2-complete-setup .h2-pb-bundle-sell-item:not(.h2-main-product-row) .h2-bs-title-stack {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.1875rem;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title_link.h2-bs-view-product-wrap {
	display: block;
	flex-shrink: 0;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/*
 * PB styles empty `.bundled_product_permalink` as a ~13px square + ::before icon (FontAwesomePB).
 * We output real “View product” text in the same anchor — without overrides the fixed width/height
 * and absolutely positioned ::before stack on top of the label.
 */
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title a.h2-bs-view-product.bundled_product_permalink {
	display: inline-flex !important;
	align-items: center;
	gap: 0.35em;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	cursor: pointer;
	position: relative !important;
	font-weight: 600;
	font-size: 0.8125rem;
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: var(--h2-cs-success);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
	text-decoration-color: rgb(45 138 84 / 0.45);
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: normal;
	max-width: 100%;
	box-shadow: none !important;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title a.h2-bs-view-product.bundled_product_permalink::before {
	position: static !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
	-ms-transform: none !important;
	flex-shrink: 0;
	font-size: 0.85em !important;
	line-height: 1;
	display: inline-block !important;
	vertical-align: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title a.h2-bs-view-product:hover,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title a.h2-bs-view-product:focus-visible {
	color: var(--h2-cs-success-hover);
	text-decoration-color: var(--h2-cs-success-hover);
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_excerpt {
	display: none !important;
}

/* Kill stray borders from WooCommerce / PB on inner wrappers */
.h2-complete-setup .h2-pb-bundle-sell-item .details,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_item_wrap,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_item_cart_details,
.h2-complete-setup .h2-pb-bundle-sell-item .bundled_item_after_cart_details,
.h2-complete-setup .h2-pb-bundle-sell-item:not(.has_qty_input) .bundled_item_cart_content {
	border: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_details .stock,
.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .bundled_item_cart_details p.stock {
	border: none !important;
	box-shadow: none !important;
}

/*
 * Main line inside .details: [checkbox] | title | price (thumb is sibling .bundled_product_images).
 */
.h2-complete-setup .h2-pb-bundle-sell-item > .details {
	flex: 1 1 0% !important;
	min-width: 0 !important;
	align-self: stretch;
}

/*
 * PB outputs .details children in DOM order: title (h4) → optional (label) → price → .cart.
 * Use CSS Grid at all breakpoints (not flex+wrap): flex let the middle column shrink incorrectly
 * and let “View product” paint over the checkbox; minmax(0, 1fr) keeps column 2 strictly between 1 and 3.
 */
.h2-complete-setup .h2-pb-bundle-sell-item .details {
	display: grid !important;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-auto-rows: auto;
	align-items: center;
	column-gap: 0.75rem;
	row-gap: 0.25rem;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .details {
	row-gap: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_optional_checkbox {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	justify-self: center;
	margin: 0;
	padding: 0.25rem;
	min-width: 2.75rem;
	min-height: 2.75rem;
	cursor: pointer;
	line-height: 0;
	width: max-content;
	box-sizing: border-box;
}

/*
 * Title + price: Figma uses bold price; titles should read as primary (WC .price
 * often resets nested spans to 400 — use explicit weights + inherit on inner).
 */
/*
 * Title column layout lives on `.h2-bs-title-stack` (theme template) — do not flex the h4 itself
 * or sibling spans can shrink-wrap to different widths vs the checkbox column.
 */
.h2-complete-setup .h2-pb-bundle-sell-item:not(.h2-main-product-row) .bundled_product_title.product_title {
	min-width: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title.product_title {
	grid-column: 2;
	grid-row: 1;
	justify-self: stretch;
	min-width: 0;
	/* Contain long titles + 2-line link stack; grid column minmax(0,1fr) handles the rest */
	overflow-x: clip;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.38;
	font-weight: 600 !important;
	color: var(--h2-cs-text);
	letter-spacing: -0.015em;
}

@media (min-width: 769px) {
	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title.product_title {
		font-size: 1.0625rem;
		line-height: 1.35;
	}

	.h2-complete-setup .h2-main-product-row .bundled_product_title {
		font-size: 1.0625rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .details > .price {
		font-size: 1.0625rem;
	}

	.h2-complete-setup .h2-main-product-row .price {
		font-size: 1.0625rem;
	}
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title .bundled_product_title_inner {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-weight: inherit;
	min-width: 0;
	/* Long accessory names — break here only; do not set overflow-wrap on the whole h4 (breaks .h2-bs-view-product) */
	overflow-wrap: anywhere;
}

/* Price is sibling of label (PB markup); right column */
.h2-complete-setup .h2-pb-bundle-sell-item .details > .price {
	grid-column: 3;
	grid-row: 1;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.38;
	font-weight: 600 !important;
	color: var(--h2-cs-text);
	white-space: nowrap;
	display: block;
	text-align: right;
	justify-self: end;
	align-self: center;
}

.h2-complete-setup .h2-pb-bundle-sell-item .details > .price .woocommerce-Price-amount,
.h2-complete-setup .h2-pb-bundle-sell-item .details > .price span {
	font-weight: 600 !important;
}

/* Sale / compare-at: explicit greys + deep red so strikethrough and VAT line stay readable */
.h2-complete-setup .h2-main-product-row .price del,
.h2-complete-setup .h2-pb-bundle-sell-item .details > .price del {
	color: var(--h2-cs-text-del);
	opacity: 1;
	text-decoration-thickness: 1px;
}

.h2-complete-setup .h2-main-product-row .price ins,
.h2-complete-setup .h2-pb-bundle-sell-item .details > .price ins {
	text-decoration: none;
	color: var(--h2-cs-sale);
	font-weight: 600 !important;
}

.h2-complete-setup .h2-main-product-row .price ins .woocommerce-Price-amount,
.h2-complete-setup .h2-pb-bundle-sell-item .details > .price ins .woocommerce-Price-amount {
	color: inherit;
	font-weight: 600 !important;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_checkbox,
.h2-complete-setup .h2-main-product-row .bundled_product_checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 1.125rem;
	height: 1.125rem;
	min-width: 1.125rem;
	min-height: 1.125rem;
	margin: 0;
	vertical-align: middle;
	flex-shrink: 0;
	border: none;
	border-radius: 0.3125rem;
	background: rgb(255 255 255 / 0.95);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	box-shadow:
			inset 0 0 0 1.5px rgb(0 0 0 / 0.2),
			0 1px 1px rgb(0 0 0 / 0.05);
	transition:
			box-shadow var(--h2-cs-duration) var(--h2-cs-ease),
			background var(--h2-cs-duration) var(--h2-cs-ease);
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_checkbox:checked,
.h2-complete-setup .h2-main-product-row .bundled_product_checkbox:checked {
	background-color: var(--h2-cs-success);
	box-shadow:
			inset 0 0 0 1px rgb(36 111 69 / 0.35),
			0 1px 3px rgb(45 138 84 / 0.22);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	background-size: 0.65rem 0.65rem;
	background-position: center;
	background-repeat: no-repeat;
}

/* Main row: native `disabled` only — same tick as add-ons, dimmed so it reads as non-toggleable. */
.h2-complete-setup .h2-main-product-row .bundled_product_checkbox:disabled:checked {
	opacity: 0.6;
	cursor: not-allowed;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_checkbox:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

/*
 * PB’s `.cart` must not share row 1 with the title — without `grid-row`, grid auto-placement
 * can put full-width column span on row 1 and paint the price stack over the h4 / “View product”.
 */
.h2-complete-setup .h2-pb-bundle-sell-item .details > .cart {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100%;
	min-width: 0;
	margin: 0;
}

/* has_qty rows: no hairlines — spacing only (border was stacking with legacy PB rules) */
.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .details > .cart {
	margin-top: 0.375rem;
	padding-top: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_item_cart_details .cart {
	margin: 0;
}

.h2-complete-setup .h2-pb-bundle-sell-item .bundled_item_cart_content[style*="display:none"] {
	display: none !important;
}

.h2-complete-setup .bundle_data {
	margin-top: 0.125rem;
}

.h2-complete-setup .bundle_error .woocommerce-message,
.h2-complete-setup .bundle_error .woocommerce-error {
	margin-bottom: 0;
}

/* Footer — CRO: total + one primary action; whitespace separates decision from list */
.h2-complete-setup__footer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 1rem;
	row-gap: 0.5rem;
	margin-top: 0.5rem;
	padding-top: 1rem;
	border: none;
	border-top: 1px solid rgb(0 0 0 / 0.08);
	box-shadow: none;
}

/* Nothing checked in Complete Your Setup — hide total + CTA (JS toggles class). */
.h2-complete-setup__footer.h2-complete-setup__footer--empty {
	display: none;
	margin: 0;
	padding: 0;
	border: none;
}

.h2-complete-setup__total {
	min-width: 0;
}

.h2-complete-setup__total-label {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--h2-cs-text-eyebrow);
}

@media (min-width: 769px) {
	.h2-complete-setup__total-label {
		font-size: 0.875rem;
	}

	.h2-complete-setup__total-price {
		font-size: 1.25rem;
	}
}

.h2-complete-setup__total-price {
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 600;
	color: var(--h2-cs-text);
	margin-top: 0.125rem;
	letter-spacing: -0.02em;
}

.h2-complete-setup__total-price .woocommerce-Price-amount {
	font-weight: 600;
}

/* CTA — single high-contrast primary (conversion); generous touch target */
.h2-complete-setup__submit-all {
	min-height: 2.75rem;
	min-width: 2.75rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	justify-self: end;
	background: var(--h2-cs-success) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0.75rem;
	box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
	transition:
			background var(--h2-cs-duration) var(--h2-cs-ease),
			box-shadow var(--h2-cs-duration) var(--h2-cs-ease);
}

.h2-complete-setup__submit-all:hover,
.h2-complete-setup__submit-all:focus {
	background: var(--h2-cs-success-hover) !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgb(45 138 84 / 0.28);
}

.h2-complete-setup__submit-all:focus-visible {
	outline: 2px solid var(--h2-cs-success);
	outline-offset: 3px;
}

@media (max-width: 600px) {
	/* Outer section gutter is on `.h2-complete-setup`; inner keeps compact horizontal padding */
	.h2-complete-setup__inner {
		padding: 0.625rem 0.625rem 0.6875rem;
		border-radius: 0.625rem;
	}

	/* Even vertical rhythm: main row → add-ons matches gap between add-on cards */
	.h2-complete-setup__mount {
		gap: 0.75rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item.bundled_product_summary,
	.h2-complete-setup .h2-main-product-row {
		flex-wrap: nowrap;
		align-items: center;
		gap: 0.375rem;
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}

	/* Add-on rows: top-align thumb with title block (stock + qty can be tall) */
	.h2-complete-setup .h2-pb-bundle-sell-item.bundled_product_summary:not(.h2-main-product-row) {
		align-items: flex-start;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_images {
		width: 2.75rem;
		max-width: 2.75rem;
		align-self: center;
		margin-top: 0;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item:not(.h2-main-product-row) .bundled_product_images {
		align-self: flex-start;
		margin-top: 0.125rem;
	}

	.h2-complete-setup .h2-main-product-row .bundled_product_images {
		width: 2.75rem;
		max-width: 2.75rem;
	}

	.h2-complete-setup .small_width.bundle_form .h2-pb-bundle-sell-item .bundled_product_images,
	.h2-complete-setup .small_width.bundle_sells_form .h2-pb-bundle-sell-item .bundled_product_images {
		width: 2.75rem !important;
		max-width: 2.75rem !important;
		flex: 0 0 2.75rem !important;
	}

	/*
	 * Narrow: two columns — [checkbox] | [ title + View product ]; price full-width under text.
	 * minmax(0, 1fr) matches desktop fix (prevents link bleeding under checkbox).
	 */
	.h2-complete-setup .h2-pb-bundle-sell-item .details {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: start;
		column-gap: 0.375rem;
		row-gap: 0.25rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item.has_qty_input .details {
		row-gap: 0;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_optional_checkbox {
		grid-column: 1;
		grid-row: 1 / span 2;
		align-self: center;
		min-width: 2.5rem;
		min-height: 2.5rem;
		padding: 0.125rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title.product_title {
		grid-column: 2;
		grid-row: 1;
		align-self: start;
		justify-self: stretch;
		line-height: 1.35;
		overflow-x: clip;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_title .bundled_product_title_inner {
		hyphens: auto;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .details > .price {
		grid-column: 2;
		grid-row: 2;
		width: 100%;
		margin-left: 0;
		margin-top: 0;
		text-align: left;
		max-width: 100%;
		white-space: normal;
		align-self: start;
		justify-self: stretch;
		font-size: 0.9375rem;
	}

	.h2-complete-setup .h2-pb-bundle-sell-item .details > .cart {
		grid-column: 1 / -1;
		grid-row: 3;
		margin-top: 0.125rem;
	}

	/* Main row: mirror grid for title + price stack */
	.h2-complete-setup .h2-main-product-row > .details {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		align-items: start;
		column-gap: 0.375rem;
		row-gap: 0.25rem;
		width: 100%;
	}

	.h2-complete-setup .h2-main-product-row .bundled_product_optional_checkbox {
		grid-column: 1;
		grid-row: 1 / span 2;
		align-self: center;
		min-width: 2.5rem;
		min-height: 2.5rem;
		padding: 0.125rem;
	}

	.h2-complete-setup .h2-main-product-row .bundled_product_title {
		grid-column: 2;
		grid-row: 1;
		line-height: 1.35;
	}

	.h2-complete-setup .h2-main-product-row .bundled_product_title .h2-bs-main-product-name {
		overflow-wrap: anywhere;
	}

	.h2-complete-setup .h2-main-product-row .price {
		grid-column: 2;
		grid-row: 2;
		margin: 0;
		text-align: left;
		white-space: normal;
		justify-self: start;
	}

	.h2-complete-setup__footer {
		grid-template-columns: 1fr;
		justify-items: stretch;
		row-gap: 0.625rem;
		padding-top: 0.75rem;
	}

	.h2-complete-setup__total-price {
		font-size: 1.1875rem;
	}

	.h2-complete-setup__submit-all {
		width: 100%;
		justify-self: stretch;
		text-align: center;
		min-height: 3rem;
		padding-top: 0.6875rem;
		padding-bottom: 0.6875rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.h2-complete-setup .h2-pb-bundle-sell-item.bundled_product_summary,
	.h2-complete-setup .h2-main-product-row,
	.h2-complete-setup__submit-all,
	.h2-complete-setup .h2-pb-bundle-sell-item .bundled_product_checkbox,
	.h2-complete-setup .h2-main-product-row .bundled_product_checkbox {
		transition-duration: 0.01ms !important;
	}
}
