/**
 * F3 empty-drawer CTA pair (MiniCartHooks): the drawer column is ~236px
 * on phones and the theme lays the native button pair on one nowrap
 * row - "Înapoi la magazin" rendered clipped (owner screenshot
 * 2026-08-05). Let the pair wrap; a button that doesn't fit takes its
 * own full-width row instead of shearing its label.
 */
.widget_shopping_cart_content .ng-mini-cart-empty-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.widget_shopping_cart_content .ng-mini-cart-empty-cta .button.wc-forward {
	/* Full row each, and margin: 0 kills the theme's 10px left margin
	   on .button.checkout (meant for the side-by-side row) - stacked,
	   it left the pair misaligned and unequal (owner screenshot). */
	flex: 1 1 100%;
	margin: 0;
	min-width: 0;
	text-align: center;
}
