/**
 * Frontend styles for Bundle Discount widgets.
 */

.bd-bundle-widget {
	margin: 24px 0;
	padding: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fafafa;
	position: relative;
}

.bd-bundle-badge {
	display: inline-block;
	background: #d63638;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.bd-bundle-title {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
}

/* Fixed bundle item list */
.bd-bundle-items {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.bd-bundle-fixed .bd-bundle-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
	border-bottom: 1px solid #ececec;
}

.bd-bundle-fixed .bd-bundle-item:last-child {
	border-bottom: none;
}

.bd-bundle-fixed .bd-bundle-item img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
}

.bd-bundle-fixed .bd-item-name {
	flex: 1;
	font-weight: 500;
}

.bd-item-qty {
	color: #666;
	font-size: 13px;
}

/* Pricing row */
.bd-bundle-pricing {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.bd-price-original {
	text-decoration: line-through;
	color: #999;
	font-size: 15px;
}

.bd-price-bundle {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
}

.bd-price-savings {
	background: #e7f6e7;
	color: #2e7d32;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
}

/* Add to cart button */
.bd-add-bundle-to-cart {
	width: 100%;
	font-size: 15px;
	padding: 12px 16px;
	font-weight: 600;
}

/* Mix & match / quantity grid */
.bd-bundle-items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.bd-bundle-items-grid .bd-bundle-item {
	text-align: center;
	border: 1px solid #ececec;
	border-radius: 6px;
	padding: 10px;
	background: #fff;
	transition: border-color 0.15s ease;
}

.bd-bundle-items-grid .bd-bundle-item:hover {
	border-color: #c9c9c9;
}

.bd-bundle-items-grid .bd-bundle-item.bd-current-product {
	border-color: #2c3e50;
	box-shadow: 0 0 0 1px #2c3e50;
}

.bd-bundle-items-grid .bd-bundle-item a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bd-bundle-items-grid img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	margin-bottom: 6px;
}

.bd-bundle-items-grid .bd-item-name {
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 2px;
}

.bd-bundle-items-grid .bd-item-price {
	display: block;
	font-size: 12px;
	color: #666;
}

/* Notes */
.bd-bundle-note {
	font-size: 13px;
	color: #555;
	margin: 0;
}

.bd-bundle-note-automatic {
	margin-top: 8px;
	font-style: italic;
	color: #888;
}

/* Tier table (legacy, kept for compatibility) */
.bd-tier-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 12px;
}

.bd-tier-table th,
.bd-tier-table td {
	text-align: left;
	padding: 6px 10px;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
}

.bd-tier-table th {
	font-weight: 600;
	color: #333;
}

/* ===== Buy More, Save More card ===== */
.bd-buymore-card {
	background: #fff;
	border: 1px solid #ececec;
	--bd-selected-border: #ad1457;
	--bd-selected-bg: #fdf2f7;
	--bd-tag-bg: #fde2ec;
	--bd-tag-text: #ad1457;
	--bd-best-bg: #ad1457;
	--bd-best-text: #ffffff;
	--bd-price-text: #222222;
}

.bd-buymore-card .bd-bundle-title {
	font-size: 16px;
	letter-spacing: 0.02em;
	color: #333;
	text-align: left;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 10px;
}

.bd-buymore-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 14px 0;
}

.bd-buymore-option {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	background: var(--bd-selected-bg);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.bd-buymore-option:hover {
	border-color: var(--bd-selected-border);
}

.bd-buymore-option.bd-buymore-selected {
	border-color: var(--bd-selected-border);
	background: #fff;
}

.bd-buymore-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bd-buymore-radio-dot {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #c9c9c9;
	position: relative;
	transition: border-color 0.15s ease;
}

.bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot {
	border-color: var(--bd-selected-border);
}

.bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bd-selected-border);
}

.bd-buymore-label {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bd-buymore-label strong {
	font-size: 15px;
	color: #222;
}

.bd-buymore-discount-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--bd-tag-bg);
	color: var(--bd-tag-text);
}

.bd-buymore-discount-tag.bd-buymore-standard {
	background: #f1f1f1;
	color: #777;
}

.bd-buymore-pricing {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}

.bd-buymore-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--bd-price-text);
}

.bd-buymore-regular {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
}

.bd-buymore-unit-price {
	font-size: 11px;
	color: #888;
}

.bd-buymore-badge {
	position: absolute;
	top: -10px;
	right: 14px;
	background: var(--bd-best-bg);
	color: var(--bd-best-text);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 4px;
}

/* ============================================================
   Widget style variants
   Default (no data-style, or data-style="card_classic") uses
   the rules above. Each variant below overrides only what
   differs, reusing the same HTML structure and CSS variables.
   ============================================================ */

/* ---- icon_badge: numbered circle badge replaces the radio dot ---- */
.bd-buymore-card[data-style="icon_badge"] .bd-buymore-option {
	border-radius: 12px;
}

.bd-buymore-card[data-style="icon_badge"] .bd-buymore-radio-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #666;
}

.bd-buymore-card[data-style="icon_badge"] .bd-buymore-radio-dot::after {
	content: attr(data-n);
	position: static;
	width: auto;
	height: auto;
	background: none;
	color: inherit;
}

.bd-buymore-card[data-style="icon_badge"] .bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot {
	background: var(--bd-selected-bg);
	color: var(--bd-selected-border);
}

.bd-buymore-card[data-style="icon_badge"] .bd-buymore-badge {
	top: -9px;
	left: 16px;
	right: auto;
}

/* ---- accent_bar: colored left border + corner ribbon for best value ---- */
.bd-buymore-card[data-style="accent_bar"] .bd-buymore-option {
	border-radius: 6px;
	border-left: 4px solid #ddd;
	border-top: 0.5px solid #ececec;
	border-right: 0.5px solid #ececec;
	border-bottom: 0.5px solid #ececec;
}

.bd-buymore-card[data-style="accent_bar"] .bd-buymore-option.bd-buymore-selected {
	border-left-color: var(--bd-selected-border);
	border-top-color: var(--bd-selected-border);
	border-right-color: var(--bd-selected-border);
	border-bottom-color: var(--bd-selected-border);
}

.bd-buymore-card[data-style="accent_bar"] .bd-buymore-badge {
	top: 0;
	right: 0;
	border-radius: 0 0 0 6px;
	padding: 4px 10px 4px 14px;
}

/* ---- pill_row: horizontal layout instead of stacked ---- */
.bd-buymore-card[data-style="pill_row"] .bd-buymore-options {
	flex-direction: row;
}

.bd-buymore-card[data-style="pill_row"] .bd-buymore-option {
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	gap: 6px;
	padding: 16px 8px;
}

.bd-buymore-card[data-style="pill_row"] .bd-buymore-radio-dot {
	display: none;
}

.bd-buymore-card[data-style="pill_row"] .bd-buymore-label {
	align-items: center;
}

.bd-buymore-card[data-style="pill_row"] .bd-buymore-pricing {
	align-items: center;
}

.bd-buymore-card[data-style="pill_row"] .bd-buymore-badge {
	top: -9px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	white-space: nowrap;
}

/* ---- minimal_list: no card borders, just divider lines ---- */
.bd-buymore-card[data-style="minimal_list"] .bd-buymore-options {
	gap: 0;
}

.bd-buymore-card[data-style="minimal_list"] .bd-buymore-option {
	border: none;
	border-bottom: 0.5px solid #ececec;
	border-radius: 0;
	background: transparent;
	padding: 14px 4px;
}

.bd-buymore-card[data-style="minimal_list"] .bd-buymore-option.bd-buymore-selected {
	background: var(--bd-selected-bg);
	border-radius: 6px;
	padding: 14px 10px;
}

.bd-buymore-card[data-style="minimal_list"] .bd-buymore-radio-dot {
	width: 18px;
	height: 18px;
}

.bd-buymore-card[data-style="minimal_list"] .bd-buymore-badge {
	position: static;
	display: inline-block;
	margin-left: 8px;
	font-size: 9px;
	vertical-align: middle;
}

.bd-buymore-card[data-style="minimal_list"] .bd-buymore-label {
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

/* ---- bold_winner: best-value tier rendered as a filled dark card ---- */
.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best {
	background: var(--bd-best-bg);
	border-color: var(--bd-best-bg);
	transform: scale(1.02);
}

.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best .bd-buymore-label strong,
.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best .bd-buymore-price {
	color: var(--bd-best-text);
}

.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best .bd-buymore-regular,
.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best .bd-buymore-unit-price {
	color: var(--bd-best-text);
	opacity: 0.7;
}

.bd-buymore-card[data-style="bold_winner"] .bd-buymore-option.bd-buymore-is-best .bd-buymore-radio-dot {
	border-color: var(--bd-best-text);
	background: var(--bd-best-text);
}

.bd-buymore-card[data-style="bold_winner"] .bd-buymore-badge {
	background: var(--bd-tag-bg);
	color: var(--bd-tag-text);
}

/* ---- staircase: card width grows with tier position ---- */
.bd-buymore-card[data-style="staircase"] .bd-buymore-options {
	gap: 8px;
}

.bd-buymore-card[data-style="staircase"] .bd-buymore-option:nth-child(1) {
	width: 70%;
}

.bd-buymore-card[data-style="staircase"] .bd-buymore-option:nth-child(2) {
	width: 85%;
}

.bd-buymore-card[data-style="staircase"] .bd-buymore-option:nth-child(3) {
	width: 100%;
}

.bd-buymore-card[data-style="staircase"] .bd-buymore-option:nth-child(4) {
	width: 100%;
}

/* ---- savings_callout: square checkbox instead of radio ---- */
.bd-buymore-card[data-style="savings_callout"] .bd-buymore-radio-dot {
	border-radius: 5px;
}

.bd-buymore-card[data-style="savings_callout"] .bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot {
	background: var(--bd-selected-border);
}

.bd-buymore-card[data-style="savings_callout"] .bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot::after {
	border-radius: 2px;
	width: 8px;
	height: 8px;
	top: 4px;
	left: 4px;
	background: #fff;
}

/* ---- split_card: price lives in its own colored zone ---- */
.bd-buymore-card[data-style="split_card"] .bd-buymore-option {
	padding: 0;
	overflow: hidden;
	align-items: stretch;
}

.bd-buymore-card[data-style="split_card"] .bd-buymore-radio-dot {
	margin-left: 14px;
	align-self: center;
}

.bd-buymore-card[data-style="split_card"] .bd-buymore-label {
	padding: 14px 8px;
	justify-content: center;
}

.bd-buymore-card[data-style="split_card"] .bd-buymore-pricing {
	background: rgba(0,0,0,0.04);
	padding: 14px 16px;
	justify-content: center;
	flex: 0 0 auto;
}

.bd-buymore-card[data-style="split_card"].bd-buymore-card .bd-buymore-option.bd-buymore-selected .bd-buymore-pricing {
	background: var(--bd-selected-bg);
}

/* ---- ticket_stub: dashed perforation between label and price ---- */
.bd-buymore-card[data-style="ticket_stub"] .bd-buymore-option {
	padding: 0;
	align-items: stretch;
}

.bd-buymore-card[data-style="ticket_stub"] .bd-buymore-radio-dot {
	margin-left: 14px;
	align-self: center;
}

.bd-buymore-card[data-style="ticket_stub"] .bd-buymore-label {
	padding: 14px 12px;
	position: relative;
}

.bd-buymore-card[data-style="ticket_stub"] .bd-buymore-label::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border-right: 1px dashed #ccc;
}

.bd-buymore-card[data-style="ticket_stub"] .bd-buymore-pricing {
	padding: 14px 18px;
	justify-content: center;
}

/* ---- quantity_dial: large numeral dial replaces radio dot ---- */
.bd-buymore-card[data-style="quantity_dial"] .bd-buymore-radio-dot {
	width: 44px;
	height: 44px;
	border-width: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: #888;
}

.bd-buymore-card[data-style="quantity_dial"] .bd-buymore-radio-dot::before {
	content: attr(data-n);
}

.bd-buymore-card[data-style="quantity_dial"] .bd-buymore-radio-dot::after {
	display: none;
}

.bd-buymore-card[data-style="quantity_dial"] .bd-buymore-option.bd-buymore-selected .bd-buymore-radio-dot {
	background: var(--bd-selected-border);
	color: #fff;
}

/* ---- editorial: no rounded cards, horizontal rules, uppercase labels ---- */
.bd-buymore-card[data-style="editorial"] .bd-buymore-options {
	gap: 0;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-option {
	border: none;
	border-top: 0.5px solid #ececec;
	border-bottom: 0.5px solid #ececec;
	border-radius: 0;
	background: transparent;
	margin-top: -1px;
	padding: 13px 4px;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-option.bd-buymore-selected {
	border-top-color: var(--bd-selected-border);
	border-bottom-color: var(--bd-selected-border);
	background: transparent;
	z-index: 1;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-radio-dot {
	width: 16px;
	height: 16px;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-label strong {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 13px;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-label {
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.bd-buymore-card[data-style="editorial"] .bd-buymore-badge {
	position: static;
	display: inline-block;
	font-size: 9px;
}

/* ---- unlock_progression: icon shifts package -> gift -> crown ---- */
.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-radio-dot {
	width: 22px;
	height: 22px;
	border: none;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
}

.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-radio-dot::after,
.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-radio-dot::before {
	display: none;
}

.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-option:nth-child(1) .bd-buymore-radio-dot::before {
	content: "\1F4E6 ";
	display: block;
}

.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-option:nth-child(2) .bd-buymore-radio-dot::before {
	content: "\1F381 ";
	display: block;
}

.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-option:nth-child(3) .bd-buymore-radio-dot::before,
.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-option:nth-child(4) .bd-buymore-radio-dot::before {
	content: "\1F451 ";
	display: block;
}

.bd-buymore-card[data-style="unlock_progression"] .bd-buymore-option.bd-buymore-selected {
	border-width: 2px;
}


/* Out-of-stock state */
.bd-buymore-option.bd-buymore-out-of-stock {
	cursor: not-allowed;
	opacity: 0.55;
}

.bd-buymore-option.bd-buymore-out-of-stock .bd-buymore-discount-tag.bd-buymore-oos-tag {
	background: #f1f1f1;
	color: #b32d2e;
}


/* ===== Countdown timer ===== */
.bd-timer {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #ececec;
	text-align: center;
	color: var(--bd-price-text, #222);
}

.bd-timer-heading {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
}

.bd-timer-pulse {
	display: none;
}

.bd-timer-display {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
}

.bd-timer-unit {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	min-width: 42px;
}

.bd-timer-num {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.bd-timer-lbl {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	opacity: 0.7;
	margin-top: 3px;
}

.bd-timer-sep {
	font-size: 20px;
	font-weight: 700;
	opacity: 0.35;
	margin-top: 4px;
}

.bd-timer-expired {
	font-size: 13px;
	font-weight: 700;
	color: #b32d2e;
}

/* Design: Digit Boxes */
.bd-timer-boxes .bd-timer-num {
	display: inline-block;
	background: var(--bd-selected-border, #ad1457);
	color: #fff;
	padding: 8px 10px;
	border-radius: 8px;
	min-width: 38px;
}

.bd-timer-boxes .bd-timer-sep {
	align-self: center;
	margin-top: -14px;
	color: var(--bd-selected-border, #ad1457);
	opacity: 0.55;
}

/* Design: Minimal Inline */
.bd-timer-minimal {
	border-top: none;
	padding-top: 6px;
}

.bd-timer-minimal .bd-timer-heading {
	display: inline;
	margin-right: 6px;
}

.bd-timer-minimal .bd-timer-display {
	display: inline-flex;
	gap: 3px;
	vertical-align: middle;
}

.bd-timer-minimal .bd-timer-unit {
	flex-direction: row;
	min-width: 0;
}

.bd-timer-minimal .bd-timer-lbl {
	display: none;
}

.bd-timer-minimal .bd-timer-num {
	font-size: 15px;
}

.bd-timer-minimal .bd-timer-sep {
	margin-top: 0;
	align-self: center;
	font-size: 15px;
}

/* Design: Flip Cards */
.bd-timer-flip .bd-timer-num {
	display: inline-block;
	background: linear-gradient(#3a3a3a, #1b1b1b);
	color: #fff;
	padding: 8px 10px;
	border-radius: 6px;
	min-width: 38px;
	position: relative;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.bd-timer-flip .bd-timer-num::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: rgba(0, 0, 0, 0.45);
}

.bd-timer-flip .bd-timer-sep {
	align-self: center;
	margin-top: -14px;
	color: #1b1b1b;
}

/* Design: Accent Pill */
.bd-timer-pill {
	border-top: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--bd-selected-border, #ad1457);
	color: #fff;
	border-radius: 999px;
	padding: 10px 18px;
}

.bd-timer-pill .bd-timer-heading {
	display: inline;
	margin: 0;
	color: #fff;
}

.bd-timer-pill .bd-timer-display {
	display: inline-flex;
	gap: 4px;
}

.bd-timer-pill .bd-timer-unit {
	flex-direction: row;
	min-width: 0;
}

.bd-timer-pill .bd-timer-lbl {
	display: none;
}

.bd-timer-pill .bd-timer-num {
	font-size: 16px;
	color: #fff;
}

.bd-timer-pill .bd-timer-sep {
	margin-top: 0;
	align-self: center;
	color: #fff;
	opacity: 0.85;
}

/* Design: Bold Urgent */
.bd-timer-bold .bd-timer-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #c62828;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.bd-timer-bold .bd-timer-pulse {
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #e02b2b;
	animation: bdTimerPulse 1s infinite;
}

.bd-timer-bold .bd-timer-num {
	color: #c62828;
	font-size: 28px;
}

.bd-timer-bold .bd-timer-sep {
	color: #c62828;
	opacity: 0.5;
	align-self: center;
	margin-top: 0;
}

@keyframes bdTimerPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(224, 43, 43, 0.6);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(224, 43, 43, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(224, 43, 43, 0);
	}
}



/* Offer-ended notice (shown when a "stop the offer" timer has expired). */
.bd-bundle-ended {
	margin: 16px 0;
	padding: 14px 16px;
	border: 1px dashed #d1d5db;
	border-radius: 10px;
	background: #f9fafb;
	text-align: center;
}
.bd-bundle-ended-text {
	margin: 0;
	font-weight: 600;
	color: #6b7280;
}
