.biz-bundle-cart-item-shell {
	display: grid;
	gap: 4px;
	width: 100%;
}

.biz-bundle-cart-item-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
}

.biz-bundle-cart-item-title,
.biz-bundle-cart-item-title a {
	display: block;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 700;
	color: var(--biz-bundle-ink);
	text-decoration: none;
}

.biz-bundle-cart-item-title a:hover,
.biz-bundle-cart-item-title a:focus {
	color: var(--biz-bundle-accent);
}

.biz-bundle-cart-item-qty {
	flex-shrink: 0;
	font-size: 0.82em;
	font-weight: 700;
	line-height: 1;
	color: var(--biz-bundle-muted);
}

.biz-bundle-layout {
	--biz-bundle-border: #d9d2c3;
	--biz-bundle-accent: #1f5c49;
	--biz-bundle-accent-soft: #eef5f1;
	--biz-bundle-ink: #241f1a;
	--biz-bundle-muted: #6b655d;
	--biz-bundle-panel-start: #fffdf8;
	--biz-bundle-panel-end: #f8f2e9;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
	align-items: start;
	gap: 24px;
	margin-bottom: 24px;
}

.biz-bundle-panel {
	background: linear-gradient(180deg, var(--biz-bundle-panel-start) 0%, var(--biz-bundle-panel-end) 100%);
	border: 1px solid var(--biz-bundle-border);
	border-radius: 16px;
	padding: 18px;
	color: var(--biz-bundle-ink);
	box-sizing: border-box;
}

.biz-bundle-panel-header {
	margin-bottom: 12px;
}

.biz-bundle-panel-header h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.25;
	color: var(--biz-bundle-ink);
}

.biz-bundle-items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.biz-bundle-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid var(--biz-bundle-border);
	border-radius: 12px;
}

.biz-bundle-item-thumb img {
	display: block;
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 10px;
}

.biz-bundle-item-content {
	min-width: 0;
	display: grid;
	gap: 6px;
}

.biz-bundle-item-topline {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.biz-bundle-item-title-wrap {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.biz-bundle-item-title {
	font-weight: 700;
	color: var(--biz-bundle-ink);
	text-decoration: none;
	font-size: 0.98rem;
	line-height: 1.3;
}

.biz-bundle-item-title:hover,
.biz-bundle-item-title:focus {
	color: var(--biz-bundle-accent);
}

.biz-bundle-item-attributes,
.biz-bundle-item-price-label {
	color: var(--biz-bundle-muted);
	font-size: 0.84rem;
}

.biz-bundle-item-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.9rem;
}

.biz-bundle-item-price-value {
	color: var(--biz-bundle-accent);
}

.biz-bundle-item-qty-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--biz-bundle-accent-soft);
	color: var(--biz-bundle-accent);
	font-size: 0.82rem;
	font-weight: 700;
	flex-shrink: 0;
}

.biz-bundle-summary {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.biz-bundle-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(36, 31, 26, 0.08);
}

.biz-bundle-summary-row--total strong,
.biz-bundle-summary-row--savings strong {
	color: var(--biz-bundle-accent);
}

.biz-bundle-summary-row--total strong {
	font-size: 1.6rem;
	line-height: 1.1;
}

.biz-bundle-purchase-box {
	margin-top: 2px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.biz-bundle-purchase-box .quantity {
	margin: 0;
}

.biz-bundle-cart .biz-bundle-purchase-box .single_add_to_cart_button.button,
.single-product div.product .biz-bundle-cart .biz-bundle-purchase-box .single_add_to_cart_button.button {
	width: 100% !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 48px;
	margin: 0 auto !important;
	padding: 12px 18px;
	float: none !important;
	text-align: center !important;
	line-height: 1.3;
}

.biz-bundle-cart-item-meta,
.biz-bundle-order-meta {
	margin-top: 0;
	font-size: 0.9em;
}

.biz-bundle-cart-item-list,
.biz-bundle-order-meta-list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 2px;
}

.biz-bundle-cart-item-list {
	font-size: 0.82em;
	line-height: 1.4;
	color: var(--biz-bundle-muted);
}

.biz-bundle-cart-item-list li,
.biz-bundle-order-meta-list li {
	margin: 0;
}

@media (max-width: 782px) {
	.biz-bundle-layout {
		grid-template-columns: 1fr;
	}

	.biz-bundle-item {
		grid-template-columns: 1fr;
	}

	.biz-bundle-item-thumb img {
		width: 56px;
		height: 56px;
	}

	.biz-bundle-item-topline,
	.biz-bundle-item-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.biz-bundle-cart-item-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
}
